summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* GH-101362: Call join() only when >1 argument supplied to pathlib.PurePath() (...Barney Gale2023-03-051-1/+4
* gh-102444: Fix minor bugs in `test_typing` highlighted by pyflakes (#102445)Alex Waygood2023-03-051-19/+2
* GH-102341: Improve the test function for pow (#102342)Partha P. Mukherjee2023-03-051-6/+5
* Fix unused classes in a typing test (GH-102437)JosephSBoyle2023-03-051-2/+2
* gh-101979: argparse: fix a bug where parentheses in metavar argument of add_a...Yeojin Kim2023-03-052-3/+32
* gh-102356: Add thrashcan macros to filter object dealloc (#102426)Marta Gómez Macías2023-03-051-0/+10
* GH-97546: fix flaky asyncio `test_wait_for_race_condition` test (#102421)Kumar Aditya2023-03-051-1/+1
* gh-101992: update pstlib module documentation (#102133)Dustin Rodrigues2023-03-041-7/+16
* gh-63301: Set exit code when tabnanny CLI exits on error (#7699)Jaysinh Shukla2023-03-042-13/+20
* gh-102302 Micro-optimize `inspect.Parameter.__hash__` (#102303)Gouvernathor2023-03-041-1/+1
* gh-102179: Fix `os.dup2` error reporting for negative fds (#102180)Alexey Izbyshev2023-03-041-0/+20
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Raj2023-03-041-0/+25
* gh-102324: Improve tests of `typing.override` (#102325)Nikita Sobolev2023-03-031-4/+95
* Fix typos in documentation and comments (GH-102374)Michael K2023-03-021-1/+1
* gh-95672: Update memory_watchdog to use test.support.get_pagesize (gh-102365)Hyunkyun Moon2023-03-021-9/+2
* gh-102088 Optimize iter_index itertools recipe (GH-102360)Stefan Pochmann2023-03-021-0/+3
* gh-95672 skip fcntl when pipesize is smaller than pagesize (gh-102163)Hyunkyun Moon2023-03-013-3/+19
* gh-87092: Make jump target label equal to the offset of the target in the ins...Irit Katriel2023-02-283-57/+47
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-3/+3
* IDLE: Simplify DynOptionsMenu __init__code (#101371)JosephSBoyle2023-02-281-14/+11
* gh-101561: Add typing.override decorator (#101564)Steven Troxler2023-02-272-0/+79
* gh-101825: Clarify that as_integer_ratio() output is always normalized (#101843)Sergey B Kirpichev2023-02-271-3/+2
* gh-101773: Optimize creation of Fractions in private methods (#101780)Sergey B Kirpichev2023-02-273-34/+48
* gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)Eric Snow2023-02-272-284/+830
* gh-102250: Fix double-decref in COMPARE_AND_BRANCH error case (GH-102287)Dennis Sweeney2023-02-271-0/+20
* gh-91038: Change default argument value to `False` instead of `0` (#31621)Rotzbua2023-02-271-1/+1
* gh-102252: Improve coverage of test_bool.py (#102253)Eclips42023-02-251-0/+6
* gh-102209: Sync with zipp 3.15 moving complexity tests into dedicated module ...Jason R. Coombs2023-02-257-51/+87
* gh-101997: Update bundled pip version to 23.0.1 (#101998)Pradyun Gedam2023-02-252-1/+1
* gh-95675: fix uid and gid at test_add_dir_getmember (gh-102207)SKO2023-02-251-6/+7
* gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...Ionite2023-02-241-0/+81
* gh-102209: Disable the timeout in test_implied_dirs_performance. (#102225)Jason R. Coombs2023-02-241-1/+2
* gh-102158: Add tests for `softkwlist` (#102159)Eclips42023-02-241-0/+18
* Fix deadlock on shutdown if test_current_{exception,frames} fails (#102019)Jacob Bower2023-02-231-73/+75
* gh-93649: Split exception tests from _testcapimodule.c (GH-102173)Erlend E. Aasland2023-02-232-128/+148
* bpo-23224: Fix segfaults and multiple leaks in the lzma and bz2 modules (GH-7...Zackery Spytz2023-02-232-0/+8
* GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)Mark Shannon2023-02-232-1/+6
* gh-87634: remove locking from functools.cached_property (GH-101890)Carl Meyer2023-02-232-54/+9
* Few coverage nitpicks for the cmath module (#102067)Sergey B Kirpichev2023-02-222-0/+11
* gh-95672 fix typo SkitTest to SkipTest (gh-102119)Hyunkyun Moon2023-02-212-2/+2
* gh-101936: Update the default value of fp from io.StringIO to io.BytesIO (gh-...Vo Hoang Long2023-02-212-1/+2
* gh-102008: simplify test_except_star by using sys.exception() instead of sys....Irit Katriel2023-02-211-25/+19
* gh-101961 fileinput.hookcompressed should not set the encoding value for the ...Gihwan Kim2023-02-212-12/+29
* gh-102056: Fix a few bugs in error handling of exception printing code (#102078)Irit Katriel2023-02-201-0/+31
* gh-101566: Sync with zipp 3.14. (GH-102018)Jason R. Coombs2023-02-205-56/+211
* gh-88233: zipfile: handle extras after a zip64 extra (GH-96161)Tim Hatch2023-02-202-0/+64
* gh-101819: Adapt _io types to heap types, batch 1 (GH-101949)Erlend E. Aasland2023-02-201-1/+90
* gh-100210: Correct the comment link for unescaping HTML (#100212)Jean-Christophe Amiel2023-02-191-1/+1
* 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