summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* gh-111089: Add PyUnicode_AsUTF8() to the limited C API (#111121)Victor Stinner2023-10-202-0/+4
* gh-111089: PyUnicode_AsUTF8() now raises on embedded NUL (#111091)Victor Stinner2023-10-201-0/+2
* gh-110913: Fix WindowsConsoleIO chunking of UTF-8 text (GH-111007)Tamás Hegedűs2023-10-201-0/+1
* gh-111092: Make turtledemo run without default root enabled (#111093)Terry Jan Reedy2023-10-201-0/+1
* gh-85283: Build posixshmem extension with Limited C API (#111087)Victor Stinner2023-10-191-2/+3
* GH-101100: Fix reference warnings for ``__enter__`` and ``__exit__`` (#110112)Adam Turner2023-10-191-1/+1
* GH-101100: Fix reference warnings for ``__getitem__`` (#110118)Adam Turner2023-10-192-2/+2
* Fix a misspelling of Interpeter -> Interpreter (GH-111040)Nikita Sobolev2023-10-181-1/+1
* GH-102895 Add an option local_exit in code.interact to block exit() from term...Tian Gao2023-10-181-0/+1
* gh-111015: Install IDLE.app and Python Launcher.app on macOS with correct per...Joshua Root2023-10-181-0/+1
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-0/+1
* gh-108747: Add unit tests for site.{usercustomize,sitecustomize} hooks (#109470)Charles Machalow2023-10-181-0/+2
* gh-85283: Build _uuid extension with limited C API (#111010)Victor Stinner2023-10-171-2/+2
* gh-85283: Build _scproxy extension with limited C API (#111008)Victor Stinner2023-10-171-3/+3
* gh-85283: Build resource extension with limited C API (#110989)Victor Stinner2023-10-171-3/+3
* gh-110995: Fix test_gdb check_usable_gdb() (#110998)Victor Stinner2023-10-171-0/+2
* gh-85283: Add PySys_Audit() to the limited C API (#108571)Victor Stinner2023-10-172-0/+6
* gh-85283: Build winsound extension with limited C API (#110978)Victor Stinner2023-10-171-3/+4
* gh-110938: Fix error messages for indented blocks with functions and classes ...Pablo Galindo Salgado2023-10-171-0/+2
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+2
* gh-85283: Build md5 extension with limited C API (#110967)Victor Stinner2023-10-171-3/+3
* gh-85283: Build errno and _ctypes_test with limited C API (#110955)Victor Stinner2023-10-171-2/+3
* gh-85283: Add PyMem_RawMalloc() to the limited C API (#108570)Victor Stinner2023-10-172-0/+11
* gh-85283: Build _testimportmultiple with limited C API (#110954)Victor Stinner2023-10-171-0/+2
* gh-110912: Correctly display tracebacks for MemoryError exceptions using the ...Pablo Galindo Salgado2023-10-161-0/+2
* gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (...Nikita Sobolev2023-10-161-0/+2
* gh-108791: Fix `pdb` CLI invalid argument handling (#108816)Radislav Chugunov2023-10-161-0/+1
* gh-84583: Make pdb enter post-mortem mode even for SyntaxError (#110883)Tian Gao2023-10-151-0/+1
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Łukasz Langa2023-10-141-0/+3
* bpo-42663: Fix parsing TZ strings in zoneinfo module (GH-23825)Serhiy Storchaka2023-10-141-0/+4
* gh-109747: Improve errors for unsupported look-behind patterns (GH-109859)Serhiy Storchaka2023-10-141-0/+3
* gh-88434: Emit deprecation warnings for non-integer numbers in gettext if tra...Serhiy Storchaka2023-10-141-0/+3
* gh-110392: Fix tty functions (GH-110642)Serhiy Storchaka2023-10-141-0/+4
* gh-110815: Support non-ASCII keyword names in PyArg_ParseTupleAndKeywords() (...Serhiy Storchaka2023-10-141-0/+1
* gh-110771: Decompose run_forever() into parts (#110773)Russell Keith-Magee2023-10-131-0/+1
* Merge branch 'main' of https://github.com/python/cpythonThomas Wouters2023-10-131-0/+2
|\
| * gh-110805: Allow the repl to show source code and complete tracebacks (#110775)Pablo Galindo Salgado2023-10-131-0/+2
* | Python 3.13.0a1v3.13.0a1Thomas Wouters2023-10-13635-1555/+6748
|/
* gh-110525: Delete `test_c_api` method from `set` object (#110688)Nikita Sobolev2023-10-131-0/+3
* GH-110786: suppress BrokenPipeError on the sysconfig CLI (#110791)Filipe Laíns2023-10-131-0/+2
* GH-103480: make sysconfig a package (GH-110785)Filipe Laíns2023-10-121-0/+2
* gh-110782: Fix crash when TypeVar is constructed with keyword args (#110784)Jelle Zijlstra2023-10-121-0/+2
* gh-109653: Improve the import time of `email.utils` (#109824)Alex Waygood2023-10-121-0/+4
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-121-0/+2
* gh-94597: Add asyncio.EventLoop (#110723)Thomas Grainger2023-10-121-0/+1
* gh-110752: Reset `ceval.eval_breaker` to 0 in `interpreter_clear` (GH-110753)Tian Gao2023-10-121-0/+1
* gh-109409: Fix inheritance of frozen dataclass from non-frozen dataclass mixi...Nikita Sobolev2023-10-121-0/+2
* gh-110696: Fix incorrect syntax error message for incorrect argument unpackin...Pablo Galindo Salgado2023-10-121-0/+2
* gh-110682: Ignore `__match_args__` from `__instancecheck__` in protocols (#11...Nikita Sobolev2023-10-121-0/+4
* gh-85283: _stat extension now uses the limited C API (#110711)Victor Stinner2023-10-111-0/+2