summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* gh-107932: Fix dis module for bytecode that does not have an associated sourc...Corvin2023-08-252-403/+453
* gh-103384: Generalize the regex pattern `BaseConfigurator.INDEX_PATTERN` to a...Peeyush Aggarwal2023-08-252-2/+48
* gh-108444: Argument Clinic uses PyLong_AsInt() (#108458)Victor Stinner2023-08-242-14/+15
* gh-108444: Add PyLong_AsInt() public function (#108445)Victor Stinner2023-08-242-0/+31
* GH-103247: bypass the import cache on the _require_loader helperFilipe Laíns2023-08-241-1/+2
* gh-106320: Remove private _PyDict functions (#108449)Victor Stinner2023-08-241-2/+2
* gh-80527: Change support.requires_legacy_unicode_capi() (#108438)Victor Stinner2023-08-245-16/+17
* gh-106320: Remove private _PyContext_NewHamtForTests() (#108434)Victor Stinner2023-08-241-2/+2
* gh-108388: Convert test_concurrent_futures to package (#108401)Victor Stinner2023-08-2413-1677/+1845
* gh-108314: Add PyDict_ContainsString() function (#108323)Victor Stinner2023-08-241-4/+20
* gh-108111: Flush gzip write buffer before seeking, fixing bad writes (#108341)Chris Markiewicz2023-08-242-0/+15
* gh-108388: Split test_multiprocessing_spawn (#108396)Victor Stinner2023-08-2418-27/+113
* gh-108388: regrtest splits test_asyncio package (#108393)Victor Stinner2023-08-242-44/+39
* test_peg_generator and test_freeze require cpu (#108386)Victor Stinner2023-08-233-10/+5
* gh-108342: Make ssl TestPreHandshakeClose more reliable (#108370)Victor Stinner2023-08-231-31/+71
* gh-77377: Ensure multiprocessing SemLock is valid for spawn-based Process bef...albanD2023-08-232-2/+29
* gh-107811: tarfile: treat overflow in UID/GID as failure to set it (#108369)Petr Viktorin2023-08-231-1/+2
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-231-31/+23
* gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (#108354)Nikita Sobolev2023-08-2313-8/+13
* gh-50002: xml.dom.minidom now preserves whitespaces in attributes (GH-107947)Serhiy Storchaka2023-08-232-7/+63
* gh-105539: Fix ResourceWarning from unclosed SQLite connections in test_sqlit...Mariusz Felisiak2023-08-233-13/+16
* gh-108294: Add time.sleep audit event (GH-108298)Petr Viktorin2023-08-232-0/+30
* gh-108113: Make it possible to optimize an AST (#108282)Irit Katriel2023-08-232-16/+22
* gh-108342: Break ref cycle in SSLSocket._create() exc (#108344)Victor Stinner2023-08-231-1/+5
* gh-105776: Fix test_cppext when CC contains -std=c11 option (#108343)Victor Stinner2023-08-231-0/+13
* gh-90791: test.pythoninfo logs ASAN_OPTIONS env var (#108289)Victor Stinner2023-08-223-25/+39
* gh-108303: Add Lib/test/test_cppext/ sub-directory (#108325)Victor Stinner2023-08-223-6/+7
* gh-108310: Fix CVE-2023-40217: Check for & avoid the ssl pre-close flaw (#108...Łukasz Langa2023-08-222-1/+241
* gh-108303: Remove unused Lib/test/sgml_input.html (#108305)Victor Stinner2023-08-221-212/+0
* gh-106016: Add Lib/test/test_module/ directory (#108293)Victor Stinner2023-08-225-18/+18
* gh-90791: Enable test___all__ on ASAN build (#108286)Victor Stinner2023-08-226-11/+30
* gh-105539: Emit ResourceWarning if sqlite3 database is not closed explicitly ...Erlend E. Aasland2023-08-221-0/+6
* gh-108179: Add error message for parser stack overflows (#108256)Dennis Sweeney2023-08-221-1/+1
* Fix test_faulthandler for sanitizers (#108245)Victor Stinner2023-08-221-6/+13
* gh-106242: Make ntpath.realpath errors consistent with abspath when there are...Steve Dower2023-08-222-0/+18
* Fix test_generators: save/restore warnings filters (#108246)Victor Stinner2023-08-211-2/+2
* gh-107901: Fix missing line number on BACKWARD_JUMP at the end of a for loop ...Irit Katriel2023-08-211-0/+14
* gh-107265: Fix code_hash for ENTER_EXECUTOR case (#108188)Dong-hee Na2023-08-211-2/+4
* gh-108223: test.pythoninfo and libregrtest log Py_NOGIL (#108238)Victor Stinner2023-08-212-0/+6
* gh-108113: Make it possible to create an optimized AST (#108154)Irit Katriel2023-08-213-11/+64
* gh-95065, gh-107704: Argument Clinic: support multiple '/ [from ...]' and '* ...Serhiy Storchaka2023-08-211-21/+75
* gh-107905: Test raising `__value__` for `TypeAliasType` (#107997)Nikita Sobolev2023-08-211-0/+18
* gh-107396: tarfiles: set self.exception before _init_read_gz() (GH-107485)balmeida-nokia2023-08-212-1/+18
* gh-107845: Fix symlink handling for tarfile.data_filter (GH-107846)Petr Viktorin2023-08-212-9/+148
* gh-105736: Sync pure python version of OrderedDict with the C version (#108098)Raymond Hettinger2023-08-212-7/+20
* gh-107895: Fix test_asyncio.test_runners when run it in CPython's "developmen...Joon Hwan 김준환2023-08-211-1/+4
* gh-107265: Fix code_richcompare for ENTER_EXECUTOR case (gh-108165)Dong-hee Na2023-08-211-0/+11
* gh-107526: Fix test_module_level_callable_unrepresentable_default (gh-108187)Dong-hee Na2023-08-211-1/+1
* Fix patchcheck for `asyncio.tasks` (#108159)Kumar Aditya2023-08-201-9/+9
* gh-107915: Handle errors in C API functions PyErr_Set*() and PyErr_Format() (...Serhiy Storchaka2023-08-191-0/+81