summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-40855: Fix ignored mu and xbar parameters (GH-20835)Raymond Hettinger2020-06-131-0/+2
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Christian Heimes2020-06-131-0/+1
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)An Long2020-06-131-0/+1
* bpo-37556 Extend help to include latest overrides (GH-14701)Steve (Gadget) Barnes2020-06-121-0/+1
* bpo-40164: Update Windows OpenSSL to 1.1.1g (GH-20834)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2020-06-121-0/+1
* bpo-40964: disable remote IMAP tests (GH-20836)Christian Heimes2020-06-121-0/+2
* bpo-40890: Add `mapping` property to dict views (GH-20749)Dennis Sweeney2020-06-121-0/+1
* bpo-40955: Fix memory leak in subprocess module (GH-20825)Christian Heimes2020-06-121-0/+1
* bpo-33944: site: Add site-packages tracing in verbose mode (GH-12110)native-api2020-06-121-0/+1
* bpo-40950: Port nis module to multiphase initialization (GH-20811)Dong-hee Na2020-06-121-0/+2
* bpo-40626: Support HDF5 in mimetypes (GH-20042)MARK SCHWAB2020-06-111-0/+1
* bpo-29620: iterate over a copy of sys.modules (GH-4800)kernc2020-06-111-0/+3
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-111-0/+1
* bpo-40947: getpath.c uses PyConfig.platlibdir (GH-20807)Victor Stinner2020-06-111-0/+2
* bpo-34401: Fix test_gdb for HP GDB version string (GH-20804)Victor Stinner2020-06-111-0/+1
* bpo-40939: Generate keyword.py using the new parser (GH-20800)Lysandros Nikolaou2020-06-111-0/+1
* bpo-40847: Consider a line with only a LINECONT a blank line (GH-20769)Lysandros Nikolaou2020-06-101-0/+4
* bpo-40927: Fix test_binhex when run twice (GH-20764)Victor Stinner2020-06-101-0/+2
* bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set ...scoder2020-06-101-0/+2
* bpo-36543: Revert "bpo-36543: Remove the xml.etree.cElementTree module." (GH-...Serhiy Storchaka2020-06-101-0/+1
* bpo-40889: Optimize dict.items() ^ dict.items() (GH-20718)Dennis Sweeney2020-06-101-0/+1
* bpo-32604: Recommit "bpo-32604: PEP 554 for use in test suite (GH-19985)" (GH...Joannah Nanjekye2020-06-101-0/+2
* bpo-40684: Fix make install for platlibdir=lib64 (GH-20736)Victor Stinner2020-06-091-0/+2
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721)Victor Stinner2020-06-081-0/+3
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Sandro Mani2020-06-082-0/+3
* bpo-40741: Update macOS installer to use SQLite 3.32.2. (GH-20705)Ned Deily2020-06-081-0/+1
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Pablo Galindo2020-06-081-0/+1
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Jason R. Coombs2020-06-081-0/+1
* bpo-40904: Fix segfault in the new parser with f-string containing yield stat...Pablo Galindo2020-06-081-0/+2
* bpo-40724: Support setting buffer slots from type specs (GH-20648)scoder2020-06-061-0/+1
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Batuhan Taskaya2020-06-061-0/+2
* bpo-40880: Fix invalid read in newline_in_string in pegen.c (#20666)Pablo Galindo2020-06-051-0/+2
* bpo-40883: Fix memory leak in fstring_compile_expr in parse_string.c (GH-20667)Pablo Galindo2020-06-051-0/+1
* bpo-40876: Clarify error message in the csv module (GH-20653)Ram Rachum2020-06-051-0/+1
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659)Jason R. Coombs2020-06-051-0/+1
* bpo-19468: delete unnecessary instance check in importlib.reload() (GH-19424)Furkan Önder2020-06-051-0/+2
* bpo-1635741: Port mmap module to multiphase initialization (GH-19459)Dong-hee Na2020-06-051-0/+1
* bpo-40521: Make context free list per-interpreter (GH-20644)Victor Stinner2020-06-051-2/+2
* bpo-40521: Make async gen free lists per-interpreter (GH-20643)Victor Stinner2020-06-051-2/+3
* bpo-40521: Make list free list per-interpreter (GH-20642)Victor Stinner2020-06-051-3/+3
* bpo-40807: Show warnings once from codeop._maybe_compile (#20486)Cheryl Sabella2020-06-041-0/+2
* bpo-40521: Make frame free list per-interpreter (GH-20638)Victor Stinner2020-06-041-3/+3
* bpo-40521: Make slice cache per-interpreter (GH-20637)Victor Stinner2020-06-041-2/+3
* bpo-40521: Make float free list per-interpreter (GH-20636)Victor Stinner2020-06-041-1/+2
* bpo-40521: Make tuple free list per-interpreter (GH-20247)Victor Stinner2020-06-041-0/+1
* bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)Victor Stinner2020-06-041-0/+1
* bpo-17258: Add requires_hashdigest to multiprocessing tests (GH-20412)Christian Heimes2020-06-041-0/+1
* Don't raise an exception on normal return from generator. (GH-19473)Mark Shannon2020-06-041-0/+1
* bpo-40767: Allow pure Wayland to get default XDG web browser (GH-20382)Jeremy Attali2020-06-031-0/+3
* bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599)Victor Stinner2020-06-031-1/+2