summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-103193: Improve `getattr_static` test coverage (#104286)Alex Waygood2023-05-081-0/+29
* gh-104273: Remove redundant len() calls in argparse function (#104274)Burak Saler2023-05-071-3/+4
* gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)chgnrdv2023-05-071-1/+8
* GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)Barney Gale2023-05-072-18/+42
* gh-103650: Fix perf maps address format (#103651)Arthur Pastel2023-05-071-3/+9
* GH-89812: Churn `pathlib.Path` methods (GH-104243)Barney Gale2023-05-071-303/+303
* gh-104240: make _PyCompile_CodeGen support different compilation modes (#104241)Irit Katriel2023-05-071-0/+4
* gh-103193: cache calls to `inspect._shadowed_dict` in `inspect.getattr_static...Alex Waygood2023-05-072-2/+28
* GH-100479: Fix pathlib test failure on WASI (#104215)Barney Gale2023-05-071-1/+2
* gh-100370: fix OverflowError in sqlite3.Connection.blobopen for 32-bit builds...Erlend E. Aasland2023-05-071-0/+8
* Re-enable commented-out test in test_generators.py (#104130)ymki43602023-05-071-5/+4
* gh-101640: Make argparse _print_message catch any write error (#101802)Oleg Iarygin2023-05-062-3/+36
* gh-99113: Add a check for Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104206)Eric Snow2023-05-062-0/+22
* GH-103548: Improve performance of `pathlib.Path.[is_]absolute()` (GH-103549)Barney Gale2023-05-061-1/+10
* gh-90953: Emit deprecation warnings for `ast` features deprecated in Python 3...Alex Waygood2023-05-062-135/+455
* gh-104144: Optimize gather to finish eagerly when all futures complete eagerl...Itamar Ostricher2023-05-061-1/+12
* Rewrite the turtledemo makeGraphFrame method (#104224)Terry Jan Reedy2023-05-061-10/+14
* gh-65772: Clean-up turtle module (#104218)Terry Jan Reedy2023-05-061-40/+21
* gh-104144: Skip scheduling a done callback if a TaskGroup task completes eage...Itamar Ostricher2023-05-051-2/+8
* gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)Eric Snow2023-05-054-10/+29
* gh-104108: Add the Py_mod_multiple_interpreters Module Def Slot (gh-104148)Eric Snow2023-05-051-21/+61
* GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)Barney Gale2023-05-052-45/+73
* gh-69152: Add _proxy_response_headers attribute to HTTPConnection (#26152)Alexey Namyotkin2023-05-052-11/+21
* gh-103533: Use PEP 669 APIs for cprofile (GH-103534)Tian Gao2023-05-051-5/+14
* gh-64595: Argument Clinic: Touch source file if any output file changed (#104...Erlend E. Aasland2023-05-051-3/+4
* gh-64631: Test exception messages in cloned Argument Clinic funcs (#104167)Erlend E. Aasland2023-05-051-0/+13
* gh-68395: Avoid naming conflicts by mangling variable names in Argument Clini...Erlend E. Aasland2023-05-051-0/+169
* GH-104142: Fix _Py_RefcntAdd to respect immortality (GH-104143)Brandt Bucher2023-05-051-18/+25
* gh-68968: Correcting message display issue with assertEqual (#103937)Michael Blahay2023-05-043-11/+86
* GH-103899: Provide a hint when accidentally calling a module (GH-103900)Brandt Bucher2023-05-041-0/+32
* GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)Barney Gale2023-05-042-15/+31
* gh-91896: Deprecate collections.abc.ByteString (#102096)Shantanu2023-05-042-6/+36
* gh-99593: Add tests for Unicode C API (part 2) (#99868)Serhiy Storchaka2023-05-041-33/+464
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-045-3/+192
* gh-102795: Fix use of poll in test_epoll's test_control_and_wait (#102796)Kevin Krakauer2023-05-041-4/+11
* Fix typo "involvin" → "involving" (#104166)Christopher Chavez2023-05-042-2/+2
* gh-97556: Raise null bytes syntax error upon null in multiline string (GH-104...Lysandros Nikolaou2023-05-041-0/+13
* gh-104089: catch DeprecationWarning in `test_fstring` (#104137)sunmy20192023-05-041-5/+12
* gh-103509: PEP 697 -- Limited C API for Extending Opaque Types (GH-103511)Petr Viktorin2023-05-042-1/+159
* pydoc.safeimport: Use importlib.import_module instead of __import__ (GH-103118)Yuxin Wu2023-05-031-4/+1
* gh-97850: Deprecate `find_loader` and `get_loader` in `pkgutil` (GH-98520)Nikita Sobolev2023-05-032-18/+29
* GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...Barney Gale2023-05-032-41/+15
* GH-103944: Remove last use of `utcfromtimestamp` (#103995)Paul Ganssle2023-05-031-15/+20
* gh-103693: Add convenience variable feature to `pdb` (#103694)Tian Gao2023-05-032-0/+95
* gh-103968: Deprecate creating heap types whose metaclass has custom tp_new. (...Petr Viktorin2023-05-031-0/+14
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-0326-825/+59
* gh-103845: Remove line & instruction instrumentations before adding them back...Tian Gao2023-05-031-0/+36
* GH-84976: Re-introduce `datetime.py` and fix reprsPaul Ganssle2023-05-032-29/+22
* GH-84976: Move Lib/datetime.py to Lib/_pydatetimePaul Ganssle2023-05-033-5/+13
* gh-82012: Deprecate bitwise inversion (~) of bool (#103487)Tim Hoffmann2023-05-031-2/+16