summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-93442: Add test for _Py_CAST(nullptr). (gh-93505)Neil Schemenauer2022-06-051-0/+3
* gh-93442: Make C++ version of _Py_CAST work with 0/NULL. (#93500)Neil Schemenauer2022-06-051-0/+4
* [doc] Correct a grammatical error in a docstring. (GH-93441)Colin Delahunty2022-06-041-1/+1
* gh-92886: Fix test that fails when running with `-O` in `test_imaplib.py` (#9...jackh-ncl2022-06-041-0/+1
* netrc: Remove unused "import shlex" (#93311)Ulises Ojeda2022-06-041-1/+1
* gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...Barney Gale2022-06-032-0/+7
* gh-84461: Skip dtrace/network tests that are enabled by -u all (GH-93473)Christian Heimes2022-06-032-0/+7
* test.pythoninfo: Fix typo, Py_REF_DEBUG => Py_TRACE_REFS (#93467)Victor Stinner2022-06-031-1/+1
* gh-68966: Make mailcap refuse to match unsafe filenames/types/params (GH-91993)Petr Viktorin2022-06-032-4/+30
* gh-92932: dis._unpack_opargs should handle EXTENDED_ARG_QUICK (gh-92945)Dong-hee Na2022-06-032-1/+22
* gh-90473: Skip and document more failing tests on WASI (GH-93436)Christian Heimes2022-06-025-3/+20
* gh-93356: Lay out exception handling code at end of code unit (GH-92769)Irit Katriel2022-06-021-43/+42
* gh-84461: Skip new async logging tests on Emscripten (GH-93427)Christian Heimes2022-06-021-0/+3
* gh-93418: Fix an assert when an f-string expression is followed by an '=', bu...Eric V. Smith2022-06-011-0/+1
* gh-90300: split --help output into separate options (#30331)Éric2022-06-011-12/+33
* Remove the execution bit to some socket-related files. (#93368)Ezio Melotti2022-06-012-0/+0
* gh-92597: Ensure that AST nodes without explicit end positions can be compile...Pablo Galindo Salgado2022-05-311-0/+8
* gh-93143: Avoid NULL check in LOAD_FAST based on analysis in the compiler (GH...Dennis Sweeney2022-05-314-4/+187
* gh-93283: Improve error message for f-string with invalid conversion characte...Serhiy Storchaka2022-05-311-11/+22
* gh-93345: Fix a crash in substitution of nested TypeVar after TypeVarTuple (G...Serhiy Storchaka2022-05-311-1/+7
* gh-93351: Ensure the position information in AST nodes created by the parser ...Pablo Galindo Salgado2022-05-301-0/+27
* Fix typo in Lib/idlelib/idle_test/test_parenmatch.py (GH-93332)luzpaz2022-05-301-2/+2
* bpo-41287: Handle `doc` argument of `property.__init__` in subclasses (#23205)Sergei Izmailov2022-05-291-0/+95
* gh-92839: fixed typo in _bisectmodule.c (line 131) (#92849)oda-gitso2022-05-281-0/+6
* gh-93297: Make asyncio task groups prevent child tasks from being GCed (#93299)Yury Selivanov2022-05-271-13/+6
* gh-93250: [Enum] Change IntEnum boundary to KEEP for backwards compatibility ...Ethan Furman2022-05-272-3/+11
* bpo-46951: Order contents of zipapps (GH-31713)hfinucane2022-05-272-1/+17
* gh-93223: More aggressive Jump-To-Jump elimination (GH-93229)Dennis Sweeney2022-05-272-97/+103
* gh-60074: add new stable API function PyType_FromMetaclass (GH-93012)Wenzel Jakob2022-05-272-0/+14
* gh-92898: Enhance _testcppext test on cast to PyObject* (#93111)Victor Stinner2022-05-261-11/+31
* gh-91513: Tidied up a test and did minor refactoring around test filename gen...Vinay Sajip2022-05-261-23/+25
* test.pythoninfo logs more build info (#93225)Victor Stinner2022-05-261-3/+47
* gh-91513: Add 'asyncio' taskName to logging LogRecord attributes. (GH-93193)jackh-ncl2022-05-262-7/+80
* gh-69443: Add test.support.Py_DEBUG constant (#93226)Victor Stinner2022-05-2512-45/+36
* gh-93005: Fix py.exe launcher test to search for intended tag (GH-93190)Steve Dower2022-05-251-1/+1
* gh-90817: Deprecate explicitly locale.resetlocale() (#93196)Victor Stinner2022-05-251-1/+11
* gh-93124: Fix typos in comments (GH-93125)Akuli2022-05-254-6/+6
* gh-90473: Misc test fixes for WASI (GH-93218)Christian Heimes2022-05-257-6/+21
* gh-92777: Add LOAD_METHOD_LAZY_DICT (GH-92778)Ken Jin2022-05-251-0/+1
* gh-93117: Remove too large sqlite3 bigmemtest (#93154)Erlend Egeberg Aasland2022-05-251-8/+1
* test_threaded_import: Fix unittest.main spelling (GH-93114)Florian Bruhin2022-05-251-1/+1
* gh-92728: Restore re.template, but deprecate it (GH-93161)Miro Hrončok2022-05-255-5/+54
* gh-93035: [Enum] Fix IntFlag crash when no single-bit members (GH-93076)Tobin Yehle2022-05-251-1/+1
* test.pythoninfo no longer requires socket (#93191)Victor Stinner2022-05-251-1/+4
* gh-92658: Add Hyper-V socket support (GH-92755)Jordan Borean2022-05-241-0/+68
* GH-89369: test_contextlib_async finalizes event loop after each test (#93074)Kumar Aditya2022-05-241-7/+4
* GH-93112: Fix missing ResourceDenied import in test_urllib2net (#93113)Florian Bruhin2022-05-241-0/+1
* gh-93099: Fix _pyio to use locale module properly (gh-93136)Dong-hee Na2022-05-242-8/+15
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066)Yury Selivanov2022-05-231-0/+35
* gh-93118: [Enum] fix error message (GH-93138)Ethan Furman2022-05-231-2/+3