summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* GH-84783: Make the slice object hashable (GH-101264)Furkan Onder2023-02-193-10/+11
* gh-97930: Apply changes from importlib_resources 5.12. (GH-102010)Jason R. Coombs2023-02-1814-127/+237
* gh-100226: Clarify StreamReader.read behavior (#101807)Jan Gosmann2023-02-171-8/+9
* gh-101766: Fix refleak for _BlockingOnManager resources from test suite level...Dong-hee Na2023-02-172-5/+5
* gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...Barney Gale2023-02-173-1/+61
* gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)Barney Gale2023-02-173-8/+10
* gh-101766: Fix refleak for _BlockingOnManager resources (gh-101942)Dong-hee Na2023-02-171-0/+5
* gh-101758: Fix Refleak-Related Failures in test_singlephase_variants (gh-101969)Eric Snow2023-02-171-1/+13
* gh-101758: Add _PyState_AddModule() Back for the Stable ABI (gh-101956)Eric Snow2023-02-161-0/+1
* GH-96764: rewrite `asyncio.wait_for` to use `asyncio.timeout` (#98518)Kumar Aditya2023-02-163-79/+132
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-0/+1
* gh-101951: use textwrap.dedent in compiler tests to make them more readable (...Irit Katriel2023-02-161-143/+145
* gh-101928: fix crash in compiler on multi-line lambda in function call (#101933)penguin_wwy2023-02-161-0/+11
* gh-99108: Refactor _sha256 & _sha512 into _sha2. (#101924)Gregory P. Smith2023-02-162-19/+15
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-166-7/+411
* gh-101758: Fix the wasm Buildbots (gh-101943)Eric Snow2023-02-161-1/+11
* gh-101758: Add a Test For Single-Phase Init Modules in Multiple Interpreters ...Eric Snow2023-02-151-0/+73
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-152-2/+1
* gh-99138: Isolate _zoneinfo (#99218)Erlend E. Aasland2023-02-151-3/+1
* gh-101693: In sqlite3, deprecate using named placeholders with parameters sup...Erlend E. Aasland2023-02-151-0/+15
* gh-101758: Add a Test For Single-Phase Init Module Variants (gh-101891)Eric Snow2023-02-141-0/+199
* gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)Irit Katriel2023-02-142-2/+3
* gh-74895: getaddrinfo no longer raises OverflowError (#2435)Radek Smejkal2023-02-141-0/+48
* GH-87849: Simplify stack effect of SEND and specialize it for generators and ...Mark Shannon2023-02-134-16/+29
* gh-85984: Utilize new "winsize" functions from termios in pty tests. (#101831)Soumendra Ganguly2023-02-121-69/+27
* Fix typo in test_fstring.py (#101823)mjoerg2023-02-111-1/+1
* gh-101517: make bdb avoid looking up in linecache with lineno=None (#101787)Irit Katriel2023-02-102-3/+10
* Fix typo in `test_fstring.py` (#101600)Ikko Eltociear Ashimine2023-02-091-1/+1
* gh-85984: Remove legacy Lib/pty.py code. (#92365)Soumendra Ganguly2023-02-091-13/+7
* gh-101283: Fix use of unbound variable (GH-101712)Steve Dower2023-02-081-0/+2
* gh-101283: Improved fallback logic for subprocess with shell=True on Windows ...Oleg Iarygin2023-02-081-1/+15
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-085-33/+54
* gh-100933: Improve `check_element` helper in `test_xml_etree` (#100934)Nikita Sobolev2023-02-081-23/+4
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-083-4/+47
* gh-101446: Change `repr` of `collections.OrderedDict` (#101661)Nikita Sobolev2023-02-082-3/+3
* gh-101632: Add the new RETURN_CONST opcode (#101633)penguin_wwy2023-02-078-106/+84
* Merge branch 'main' of https://github.com/python/cpython into mainThomas Wouters2023-02-071-7/+6
|\
| * Make use of TESTFN_ASCII in test_fileio (GH-101645)Zachary Ware2023-02-071-7/+6
* | Python 3.12.0a5v3.12.0a5Thomas Wouters2023-02-071-1/+13
|/
* gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.11+ (#1...Matthieu Dartiailh2023-02-071-0/+56
* gh-99108: Replace SHA2-224 & 256 with verified code from HACL* (#99109)Jonathan Protzenko2023-02-071-0/+10
* gh-59956: Add a Test to Verify GILState Matches the "Current" Thread State (g...Eric Snow2023-02-061-0/+3
* gh-101562: typing: add tests for inheritance with NotRequired & Required in p...Eclips42023-02-061-0/+33
* gh-76961: Fix buildbot failures in test_pep3118 (#101587)Mark Dickinson2023-02-061-10/+10
* gh-101541: [Enum] create flag psuedo-member without calling original __new__ ...Ethan Furman2023-02-062-3/+42
* Trivial Change: Remove unhelpful doc in `datetime.timedelta` (#100164)Matty G2023-02-061-2/+5
* gh-101334: Don't force USTAR format in test_tarfile. (GH-101572)Gregory P. Smith2023-02-051-0/+5
* bpo-33591: Add support for path like objects to `ctypes.CDLL` (#7032)mrh19972023-02-052-4/+16
* gh-76961: Fix the PEP3118 format string for ctypes.Structure (#5561)Eric Wieser2023-02-051-3/+20
* Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)Mark Dickinson2023-02-051-1/+0