summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)Benjamin Peterson2020-03-1111-28737/+29772
* closes bpo-39922: Remove unused args from four functions. (GH-18893)Andy Lester2020-03-111-17/+17
* Updates functools.py with consistent quotes (GH-18825)Nikita Sobolev2020-03-111-1/+1
* bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908)Victor Stinner2020-03-103-4/+8
* bpo-38662: ensurepip invokes pip via runpy (GH-18901)Miro Hrončok2020-03-102-3/+17
* tracemalloc: 'pretty top' example no longer changes the filename (GH-18903)Adam Johnson2020-03-101-3/+1
* bpo-34822: Simplify AST for subscription. (GH-9605)Serhiy Storchaka2020-03-1015-702/+293
* bpo-39869: Fix typo in 'Instance objects' section. (GH-18889)Antoine2020-03-101-1/+1
* bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897)Victor Stinner2020-03-103-5/+4
* bpo-1294959: Add sys.platlibdir attribute (GH-18381)Victor Stinner2020-03-1016-53/+209
* bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779)Dong-hee Na2020-03-103-1/+18
* bpo-39877: Deprecate PyEval_InitThreads() (GH-18892)Victor Stinner2020-03-105-13/+21
* bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891)Victor Stinner2020-03-093-20/+21
* bpo-39763: Add _bootsubprocess to build Python on AIX (GH-18872)Victor Stinner2020-03-092-41/+107
* bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848)Victor Stinner2020-03-094-7/+70
* bpo-28577: Special case added to IP v4 and v6 hosts for /32 and /128 networks...Pete Wicken2020-03-095-5/+25
* bpo-39877: take_gil() checks tstate_must_exit() twice (GH-18890)Victor Stinner2020-03-091-1/+18
* bpo-36287: Make ast.dump() not output optional fields and attributes with def...Serhiy Storchaka2020-03-096-133/+225
* bpo-39877: Refactor take_gil() function (GH-18885)Victor Stinner2020-03-092-66/+53
* bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871)Terry Jan Reedy2020-03-095-12/+74
* bpo-38870: Simplify sequence interleaves in ast.unparse (GH-17892)Batuhan Taşkaya2020-03-092-37/+34
* bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884)Victor Stinner2020-03-093-9/+28
* bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)Victor Stinner2020-03-098-21/+7
* bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release ...Serhiy Storchaka2020-03-098-15/+39
* bpo-36184: Port python-gdb.py to FreeBSD (GH-18873)Victor Stinner2020-03-092-1/+5
* bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is call...Serhiy Storchaka2020-03-094-9/+36
* bpo-39904: Move handling of one-argument call of type() from type.__new__() t...Serhiy Storchaka2020-03-091-39/+32
* bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866)Pablo Galindo2020-03-096-5/+58
* bpo-39822: Use NULL instead of None for empty attrib in Element. (GH-18735)Serhiy Storchaka2020-03-092-41/+37
* bpo-39903: Fix double decref in _elementtree.Element.__getstate__ (GH-18850)Serhiy Storchaka2020-03-091-26/+17
* bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627)idomic2020-03-097-2629/+2652
* bpo-27115: Move IDLE Query error blanking (GH-18868)Terry Jan Reedy2020-03-091-5/+2
* Fix typo in the parser generator (GH-18603)xatier2020-03-091-1/+1
* bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699)Maor Kleinberger2020-03-083-2/+14
* bpo-39885: IDLE context menu clears selection (#18859)Terry Jan Reedy2020-03-083-0/+6
* bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801)Terry Jan Reedy2020-03-085-16/+31
* fix typo: add space (GH-18853)Julin S2020-03-081-2/+2
* closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840)Andy Lester2020-03-081-4/+4
* bpo-39567: Document audit for os.walk, os.fwalk, Path.glob and Path.rglob. (G...Serhiy Storchaka2020-03-082-0/+8
* bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811)Victor Stinner2020-03-084-26/+74
* bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833)Brandt Bucher2020-03-081-2/+4
* bpo-36144: Update MappingProxyType with PEP 584's operators (#18814)Brandt Bucher2020-03-074-1/+51
* bpo-39702: Update the Language Reference (PEP 614) (GH-18802)Brandt Bucher2020-03-072-1/+15
* bpo-39199: Use 'eval' mode for the examples with expression nodes (GH-18828)Pablo Galindo2020-03-071-292/+211
* bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient...Pablo Galindo2020-03-073-13/+56
* closes bpo-39886: Remove unused arg from config_get_stdio_errors. (GH-18823)Andy Lester2020-03-071-2/+2
* closes bpo-39878: Remove unused arguments from static functions. (GH-18822)Andy Lester2020-03-071-10/+10
* bpo-39889: Fix ast.unparse() for subscript. (GH-18824)Serhiy Storchaka2020-03-073-2/+34
* bpo-39837: Disable macOS tests on Azure Pipelines (GH-18818)Steve Dower2020-03-072-2/+6
* bpo-39882: Py_FatalError() logs the function name (GH-18819)Victor Stinner2020-03-0617-69/+112