summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* gh-106123: Modules/_sha3 appears to no longer be necessary (#106124)Skip Montanaro2023-06-272-2/+0
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-2721-305/+2559
* Revert "GH-96145: Add AttrDict to JSON module for use with object_hook (#9614...Ɓukasz Langa2023-06-266-248/+2
* gh-106107: document correct error that's raised when a mutable default value ...Roderich Schupp2023-06-261-1/+1
* GH-105793: Add follow_symlinks argument to `pathlib.Path.is_dir()` and `is_fi...Barney Gale2023-06-265-18/+59
* gh-106111: Remove zipapp documentation on creating a Windows executable (#106...Paul Moore2023-06-261-106/+9
* Update test.support.interpreters to include missing RunFailedError import (#1...Bruce Eckel2023-06-261-1/+1
* gh-106084: Remove _PyObject_RealIsInstance() function (#106106)Victor Stinner2023-06-265-14/+15
* gh-106084: Remove _PyObject_HasLen() function (#106103)Victor Stinner2023-06-264-22/+25
* gh-105927: Deprecate PyWeakref_GetObject() function (#106006)Victor Stinner2023-06-267-4/+33
* gh-104527: zippapp will now avoid appending an archive to itself. (gh-106076)Gabriel Venberg2023-06-262-1/+2
* gh-106075: add `asyncio.taskgroups.__all__` to `asyncio.__all__` (#106090)James Webber2023-06-264-1/+4
* Improve typing docs on the type of class objects (#106081)Alex Waygood2023-06-261-49/+59
* gh-106084: Remove _PySequence_BytesToCharpArray() function (#106088)Victor Stinner2023-06-263-81/+82
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-2612-24/+42
* gh-106046: Improve error message from `os.fspath` if `__fspath__` is set to `...Alex Waygood2023-06-255-4/+52
* Add end-of-file-fixer to pre-commit (#106065)Hugo van Kemenade2023-06-251-0/+3
* Docs: add links to 'callable' term in sqlite3 docs (#106072)Erlend E. Aasland2023-06-251-17/+18
* gh-106033: [docs] Improve C API GetItem & HasAttr notes. (#106047)Gregory P. Smith2023-06-242-14/+23
* GH-104375: Use `versionchanged` to describe new arguments in pathlib docs (GH...Barney Gale2023-06-241-14/+14
* gh-105987: Fix reference counting issue in `_asyncio._swap_current_task` (#10...chgnrdv2023-06-243-4/+27
* gh-102251: Disable non-rerunnable test in test_import (#106013)Erlend E. Aasland2023-06-231-4/+20
* Typing docs: fix typo in annotating tuples comment (#106048)Eamon Tracey2023-06-231-2/+2
* gh-105730: support more callables in ExceptionGroup.split() and subgroup() (#...Irit Katriel2023-06-234-26/+59
* gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr ...Serhiy Storchaka2023-06-235-31/+32
* gh-105063: Disable test_peg_generator.TestCParser bco. ref leaks (#106024)Erlend E. Aasland2023-06-231-0/+10
* gh-106030: Miscellaneous fixes in Python/suggestions.c (GH-106031)Serhiy Storchaka2023-06-231-15/+27
* gh-105974: Revert unintentional behaviour change for protocols with non-calla...Alex Waygood2023-06-233-32/+79
* Typing docs: improve the guidance on annotating tuples (#106021)Alex Waygood2023-06-231-21/+72
* gh-85136: Remove disabled remote IMAP tests (#106022)Erlend E. Aasland2023-06-231-95/+0
* GH-106012: Fix monitoring of static code objects (GH-106017)Mark Shannon2023-06-231-13/+18
* Docs: Avoid a DeprecationWarning in `pyspecific.py` when running with Sphinx ...Alex Waygood2023-06-231-11/+9
* gh-105927: Remove _PyWeakref_GetWeakrefCount() (#106007)Victor Stinner2023-06-234-22/+20
* gh-105927: _ssl GET_SOCKET() uses _PyWeakref_GET_REF() (#106002)Victor Stinner2023-06-231-2/+12
* gh-105927: PyImport_AddModule() uses _PyWeakref_GET_REF() (#106001)Victor Stinner2023-06-221-3/+19
* gh-105922: Use PyImport_AddModuleRef() function (#105999)Victor Stinner2023-06-222-3/+2
* Test specialization's thread-safety (GH-105953)Brandt Bucher2023-06-221-1/+511
* gh-105979: Fix exception handling in `unmarshal_frozen_code` (`Python/import....chgnrdv2023-06-223-0/+10
* gh-105927: Avoid calling PyWeakref_GET_OBJECT() (#105997)Victor Stinner2023-06-223-7/+21
* gh-105927: Add _PyWeakref_IS_DEAD() function (#105992)Victor Stinner2023-06-223-14/+30
* gh-101538: Add experimental wasi-threads build (#101537)YAMAMOTO Takashi2023-06-225-3/+53
* gh-98931: Add custom error messages to invalid import/from with multiple targ...Pablo Galindo Salgado2023-06-224-597/+738
* GH-89812: Add `pathlib.UnsupportedOperation` (GH-105926)Barney Gale2023-06-225-13/+91
* GH-91095: Specialize calls to normal Python classes. (GH-99331)Mark Shannon2023-06-2220-189/+511
* gh-105481: refactor instr flag related code into a new InstructionFlags class...Irit Katriel2023-06-211-36/+78
* gh-104212: Explain how to port imp.load_source() (#105978)Victor Stinner2023-06-211-1/+15
* gh-84436: update docs on Py_None/Py_True/Py_False/Py_Ellipsis becoming immort...Irit Katriel2023-06-213-19/+25
* gh-105927: finalize_modules_clear_weaklist() uses _PyWeakref_GET_REF() (#105971)Victor Stinner2023-06-213-6/+7
* gh-105927: type_from_ref() uses _PyWeakref_GET_REF() (#105963)Victor Stinner2023-06-211-13/+24
* gh-105927: Fix test_weakref_capi() refleak (#105966)Victor Stinner2023-06-211-16/+32