summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-101570: Update bundled pip version to 23.0 (#101571)Pradyun Gedam2023-02-052-1/+1
* gh-101266: Fix __sizeof__ for subclasses of int (#101394)Mark Dickinson2023-02-051-0/+39
* Fix detection of presence of time.tzset (gh-101539) (#101540)Alexander Belopolsky2023-02-051-1/+1
* GH-100485: Create an alternative code path when an accurate fma() implementat...Raymond Hettinger2023-02-041-0/+5
* gh-101322: Ensure test_zlib.ZlibDecompressorTest runs, fix errors in ZlibDeco...Ruben Vorderman2023-02-041-2/+7
* gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)Eric Snow2023-02-044-1519/+1579
* gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)Gregory P. Smith2023-02-037-156/+6
* gh-84559: skip the test when no multiprocessing (wasm, etc) (#101530)Gregory P. Smith2023-02-031-1/+4
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-0212-20/+190
* gh-96305: Fix AIX build by avoiding subprocess during bootstrap (#96429)Ayappan Perumal2023-02-021-2/+25
* gh-101467: Correct py.exe handling of prefix matches and cases when only one ...Steve Dower2023-02-011-4/+25
* gh-101277: Isolate itertools, add group and _grouper types to module state (#...Erlend E. Aasland2023-02-011-0/+32
* gh-101317: Add `ssl_shutdown_timeout` parameter for `asyncio.StreamWriter.sta...beavailable2023-02-011-2/+4
* gh-101400: Fix incorrect lineno in exception message on continue/break which ...Dong-hee Na2023-01-301-13/+17
* gh-101229: Add tests for aliases of imported names (#101230)Eclips42023-01-301-0/+18
* gh-89381: Fix invalid signatures of math/cmath.log (#101404)Sergey B Kirpichev2023-01-291-0/+1
* GH-100485: Add extended accuracy test. Switch to faster fma() based variant...Raymond Hettinger2023-01-281-0/+83
* gh-39615: Add warnings.warn() skip_file_prefixes support (#100840)Gregory P. Smith2023-01-284-9/+77
* gh-101341: Remove unncessary enum._power_of_two function (gh-101342)Dong-hee Na2023-01-281-5/+0
* gh-101000: Add os.path.splitroot() (#101002)Barney Gale2023-01-276-162/+235
* gh-60580: Fix a wrong type of `ctypes.wintypes.BYTE` (#97579)Oleg Iarygin2023-01-262-1/+20
* gh-85100: Migrate BPO link to the GitHub link for malloc warnings (gh-101343)Dong-hee Na2023-01-261-1/+2
* gh-99952: [ctypes] fix refcount issues in from_param() result. (#100169)Yukihiro Nakadaira2023-01-261-0/+52
* gh-100522 Add a test for 'futures.as_completed' timing out with a non-zero ti...JosephSBoyle2023-01-261-18/+22
* Fix incorrect versions in magic number comments (GH-101301)Brandt Bucher2023-01-251-8/+8
* gh-101326: Fix regression when passing None to FutureIter.throw (#101327)Shantanu2023-01-251-0/+2
* GH-88597: Rename uuid's new CLI args to be in line with uuidgen. (#101248)achhina2023-01-252-16/+20
* GH-100762: Don't call `gen.throw()` in `gen.close()`, unless necessary. (GH-1...Mark Shannon2023-01-242-4/+5
* gh-101261: add test for function with > 255 args (#101262)Irit Katriel2023-01-231-0/+10
* gh-101015: Fix `typing.get_type_hints` with unpacked `*tuple` (PEP 646) (#101...Nikita Sobolev2023-01-232-1/+34
* gh-83122: Deprecate testing element truth values in `ElementTree` (#31149)Jacob Walls2023-01-232-2/+23
* GH-101097: Switch from standard interval notation to greater or less than sig...Andrew Hong2023-01-221-1/+1
* gh-67790: Support float-style formatting for Fraction instances (#100161)Mark Dickinson2023-01-222-0/+582
* GH-88597: Added command line interface to UUID module. (#99463)achhina2023-01-222-0/+107
* gh-100518: Add tests for `ast.NodeTransformer` (#100521)Nikita Sobolev2023-01-213-42/+171
* gh-100726: Optimize construction of range object for medium sized integers (#...Pieter Eendebak2023-01-211-0/+1
* gh-99266: ctypes: Preserve more detailed exception in `ArgumentError`Kamil Turek2023-01-212-0/+52
* gh-101143: Remove references to `TimerHandle` from `asyncio.base_events.BaseE...J. Nick Koston2023-01-211-6/+3
* gh-91351: Fix some bugs in importlib handling of re-entrant imports (GH-94504)Jean-Paul Calderone2023-01-211-37/+196