summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-106078: Move external C-API functions to decimal module global state (#106...Charlie Zhao2023-07-111-23/+24
* gh-105227: Add PyType_GetDict() (GH-105747)Eric Snow2023-07-101-0/+25
* gh-106078: Move static variables initialized once to decimal module global st...Charlie Zhao2023-07-101-22/+28
* GH-104787: use managed weakrefs in `_asyncio` (#106516)Kumar Aditya2023-07-101-21/+6
* gh-99593: Add tests for Unicode C API (part 3) (GH-104728)Serhiy Storchaka2023-07-101-1/+506
* gh-105927: PyWeakref_GetRef() returns 1 on success (#106561)Victor Stinner2023-07-091-1/+1
* gh-104469: Convert_testcapi/vectorcall.c to use AC (gh-106557)littlebutt's workshop2023-07-092-25/+140
* gh-106508: Improve debugging of the _sre module (GH-106509)Serhiy Storchaka2023-07-083-5/+31
* gh-105873: Make `_xxsubinterpreters` use exception type name in shared except...Radislav Chugunov2023-07-081-1/+1
* gh-106524: Fix a crash in _sre.template() (GH-106525)Radislav Chugunov2023-07-081-0/+2
* gh-106078: Move static objects related to `CONTEXTVAR` to the decimal module ...Charlie Zhao2023-07-081-28/+32
* GH-106360: Support very basic superblock introspection (#106422)Mark Shannon2023-07-041-0/+21
* gh-106406: Fix _Py_IsInterpreterFinalizing() in _winapi.c (#106408)Nikita Sobolev2023-07-041-0/+1
* gh-106320: Remove private pylifecycle.h functions (#106400)Victor Stinner2023-07-0412-36/+58
* gh-106320: Remove _PyUnicode_TransformDecimalAndSpaceToASCII() (#106398)Victor Stinner2023-07-042-9/+12
* gh-106320: Remove _PyBytesWriter C API (#106399)Victor Stinner2023-07-042-1/+3
* gh-106320: Remove private _PyImport C API functions (#106383)Victor Stinner2023-07-036-2/+26
* gh-106078: Move `context template` to decimal module global state (#106346)Charlie Zhao2023-07-031-29/+30
* gh-91053: make func watcher tests resilient to other func watchers (#106286)Carl Meyer2023-07-031-12/+11
* gh-106320: Remove private _PyErr C API functions (#106356)Victor Stinner2023-07-032-0/+7
* gh-106320: Create pycore_modsupport.h header file (#106355)Victor Stinner2023-07-031-1/+3
* gh-106320: Move _PyUnicodeWriter to the internal C API (#106342)Victor Stinner2023-07-033-0/+10
* gh-106320: _testcapi avoids private _PyUnicode_EqualToASCIIString() (#106341)Victor Stinner2023-07-021-1/+1
* gh-106320: Add pycore_complexobject.h header file (#106339)Victor Stinner2023-07-021-0/+1
* gh-106078: Move DecimalException to _decimal state (#106301)Charlie Zhao2023-07-021-8/+9
* gh-106320: Use _PyInterpreterState_GET() (#106336)Victor Stinner2023-07-026-10/+12
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-0253-77/+0
* gh-106320: Remove private _PyInterpreterState functions (#106325)Victor Stinner2023-07-023-6/+27
* gh-106320: Remove private _PyTraceMalloc C API functions (#106324)Victor Stinner2023-07-022-19/+19
* gh-106320: Remove _PyInterpreterState_Get() alias (#106321)Victor Stinner2023-07-011-1/+1
* gh-106316: Remove pytime.h header file (#106317)Victor Stinner2023-07-019-279/+272
* gh-106023: Remove _PyObject_FastCall() function (#106265)Victor Stinner2023-06-301-18/+0
* Remove private _PyCodec_Lookup() function (#106269)Victor Stinner2023-06-302-0/+2
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-302-28/+15
* GH-106152: Add PY_THROW event to cProfile (GH-106161)Tian Gao2023-06-291-0/+1
* gh-106078: Convert `_decimal` types to heap types (#106079)Charlie Zhao2023-06-291-383/+412
* gh-106084: Remove _PyObject_CallMethod() function (#106159)Victor Stinner2023-06-274-2/+10
* gh-104584: Baby steps towards generating and executing traces (#105924)Guido van Rossum2023-06-271-0/+7
* gh-105927: Deprecate PyWeakref_GetObject() function (#106006)Victor Stinner2023-06-261-0/+6
* gh-106084: Remove _PySequence_BytesToCharpArray() function (#106088)Victor Stinner2023-06-261-0/+82
* gh-106084: Remove old PyObject call aliases (#106085)Victor Stinner2023-06-262-3/+3
* gh-106046: Improve error message from `os.fspath` if `__fspath__` is set to `...Alex Waygood2023-06-251-2/+2
* gh-105987: Fix reference counting issue in `_asyncio._swap_current_task` (#10...chgnrdv2023-06-241-4/+7
* gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr ...Serhiy Storchaka2023-06-232-7/+8
* gh-105927: Remove _PyWeakref_GetWeakrefCount() (#106007)Victor Stinner2023-06-232-18/+16
* gh-105927: _ssl GET_SOCKET() uses _PyWeakref_GET_REF() (#106002)Victor Stinner2023-06-231-2/+12
* gh-105927: Avoid calling PyWeakref_GET_OBJECT() (#105997)Victor Stinner2023-06-221-3/+10
* gh-105927: Add _PyWeakref_IS_DEAD() function (#105992)Victor Stinner2023-06-222-14/+17
* gh-105927: Fix test_weakref_capi() refleak (#105966)Victor Stinner2023-06-211-16/+32
* gh-105927: _ctypes use PyWeakref_GetRef() (#105964)Victor Stinner2023-06-211-18/+26