summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-105194: Fix format specifier escaped characters in f-strings (#105231)Pablo Galindo Salgado2023-06-026-2/+34
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-0231-501/+950
* GH-105162: Account for `INSTRUMENTED_RESUME` in gen.close/throw. (GH-105187)Mark Shannon2023-06-023-3/+52
* gh-105184: document that marshal functions can fail and need to be checked wi...Irit Katriel2023-06-022-0/+8
* gh-104799: Default missing lists in AST to the empty list (#104834)Jelle Zijlstra2023-06-024-239/+400
* gh-85275: Remove old buffer APIs (#105137)Inada Naoki2023-06-029-133/+79
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-0132-186/+5
* gh-92536: Argument Clinic no longer emits PyUnicode_READY() (#105208)Victor Stinner2023-06-0135-321/+37
* gh-104614: Make Sure ob_type is Always Set Correctly by PyType_Ready() (gh-10...Eric Snow2023-06-014-17/+128
* gh-104341: Call _PyEval_ReleaseLock() with NULL When Finalizing the Current T...Eric Snow2023-06-014-9/+46
* GH-89886: Bump to GNU Autoconf v2.71 (#104925)Erlend E. Aasland2023-06-019-7262/+10397
* gh-105140: remove unused arg of _PyErr_ChainStackItem (#105141)Irit Katriel2023-06-013-34/+9
* gh-103142: Upgrade binary builds and CI to OpenSSL 1.1.1u (#105174)Gregory P. Smith2023-06-0113-18/+8794
* gh-105191: Cleanup peg generator; keep only necessary files (#105197)Lysandros Nikolaou2023-06-0120-16832/+60
* gh-105145: Deprecate Py_GetPath() function (#105179)Victor Stinner2023-06-017-12/+57
* gh-105182: Remove PyEval_AcquireLock() and PyEval_InitThreads() (#105183)Victor Stinner2023-06-0111-105/+36
* gh-89886: Rely on HAVE_SYS_TIME_H (#105058)Erlend E. Aasland2023-06-015-19/+10
* remove unused #includes of pycore_pymem.h (#105166)Irit Katriel2023-06-016-264/+259
* gh-103224: Use the realpath of the Python executable in `test_venv` (GH-103243)Artem Mukhin2023-06-011-3/+5
* gh-105107: Remove PyCFunction_Call() function (#105181)Victor Stinner2023-06-018-6/+40
* gh-105156: Update Lib/test/clinic.test manually (#105180)Victor Stinner2023-06-011-14/+14
* Fix docstring of `warnings._deprecated` to show correct `remove` value (#105178)Nikita Sobolev2023-06-011-1/+1
* gh-105156: Cleanup usage of old Py_UNICODE type (#105158)Victor Stinner2023-06-014-53/+27
* gh-105145: Remove old functions to config Python init (#105154)Victor Stinner2023-06-0122-522/+182
* gh-105156: Deprecate the old Py_UNICODE type in C API (#105157)Victor Stinner2023-06-019-14/+25
* gh-105172: Fixed functools.lru_cache typed argument docstring. (GH-105173)Bar Harel2023-05-312-2/+5
* gh-102251: Explicitly free state for test modules with state in test_import (...sunmy20192023-05-312-5/+31
* Clarify that error messages are better with PEP 701 (#105150)Pablo Galindo Salgado2023-05-311-0/+25
* gh-103464: Add checks for arguments of pdb commands (GH-103465)Tian Gao2023-05-313-11/+90
* gh-105146: Update links at end of Windows installer (uninstall/repair) (GH-10...Steve Dower2023-05-312-3/+5
* gh-105148: make _PyASTOptimizeState internal to ast_opt.c (#105149)Irit Katriel2023-05-315-26/+26
* gh-105156: Argument Clinic avoids Py_UNICODE type (#105161)Victor Stinner2023-05-319-110/+100
* gh-105144: Runtime-checkable protocols: move all 'sanity checks' to `_Protoco...Alex Waygood2023-05-313-37/+111
* gh-104909: Split BINARY_OP into micro-ops (#104910)Guido van Rossum2023-05-314-631/+785
* gh-105111: remove deprecated macros Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SA...Irit Katriel2023-05-313-13/+37
* gh-104773: cgi: Fix typo in What's New in Python 3.13 (#105139)Victor Stinner2023-05-311-1/+1
* gh-105096: Deprecate wave getmarkers() method (#105098)Victor Stinner2023-05-315-0/+51
* gh-62948: IOBase finalizer logs close() errors (#105104)Victor Stinner2023-05-315-40/+19
* gh-105096: Reformat wave documentation (#105136)Victor Stinner2023-05-313-102/+109
* gh-105107: Remove PyEval_CallFunction() function (#105108)Victor Stinner2023-05-316-32/+34
* gh-104922: Make `PY_SSIZE_T_CLEAN` not mandatory again (#105051)Inada Naoki2023-05-3115-398/+106
* gh-103142: Update macOS installer to use OpenSSL 1.1.1u. (GH-105130)Ned Deily2023-05-312-3/+4
* gh-97933: add LOAD_FAST_AND_CLEAR to 3.12 What's New bytecode section (#105126)Carl Meyer2023-05-311-0/+3
* gh-87729: add LOAD_SUPER_ATTR to 3.12 What's New (#105125)Carl Meyer2023-05-311-0/+7
* gh-105020: Share tp_bases and tp_mro Between Interpreters For All Static Buil...Eric Snow2023-05-316-34/+122
* gh-102304: Fix 2 New Stable ABI Functions (gh-104762)Eric Snow2023-05-304-1/+14
* gh-105042: Disable unmatched parens syntax error in python tokenize (#105061)Lysandros Nikolaou2023-05-305-34/+49
* gh-105069: Add a readline-like callable to the tokenizer to consume input ite...Pablo Galindo Salgado2023-05-307-96/+274
* gh-89886: Properly quote Autoconf macro arguments (#105062)Erlend E. Aasland2023-05-302-706/+798
* gh-105035: fix super() calls on unusual types (e.g. meta-types) (#105094)Carl Meyer2023-05-304-221/+239