summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
...
* gh-92781: Avoid mixing declarations and code in C API (#92783) (#92813)Victor Stinner2022-05-163-9/+13
* gh-89653: PEP 670: unicodeobject.h uses _Py_CAST() (GH-92696) (GH-92703)Miss Islington (bot)2022-05-121-6/+12
* gh-89653: PEP 670: Use PyObject* type for parameters (GH-92694)Miss Islington (bot)2022-05-113-15/+20
* gh-89653: PEP 670: Limited API doesn't cast arguments (GH-92654)Miss Islington (bot)2022-05-113-3/+13
* gh-91731: Fix typo in pymacro.h (GH-92618)Miss Islington (bot)2022-05-101-1/+1
* gh-91731: Add macro compatibility for static_assert for old libcs (GH-92559) ...Miss Islington (bot)2022-05-091-0/+8
* Post 3.11.0b1Pablo Galindo2022-05-081-1/+1
* Update the SOURCE_URI in pyspecific.py to point to the new branchv3.11.0b1Pablo Galindo2022-05-061-3/+3
* gh-91321: Fix _PyObject_EXTRA_INIT for C++ (#92396)Victor Stinner2022-05-061-1/+1
* gh-88279: Deprecate PySys_SetArgvEx() (#92363)Victor Stinner2022-05-061-3/+3
* gh-57684: Add -P cmdline option and PYTHONSAFEPATH env var (#31542)Victor Stinner2022-05-051-0/+1
* gh-87390: Fix starred tuple equality and pickling (GH-92337)Serhiy Storchaka2022-05-052-0/+2
* gh-89653: PEP 670: Convert PyCFunction macros to functions (#92302)Victor Stinner2022-05-051-24/+56
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-041-12/+8
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-031-0/+8
* gh-91321: Fix PyModuleDef_HEAD_INIT on C++ (#92259)Victor Stinner2022-05-031-5/+5
* gh-91321: Add _Py_NULL macro (#92253)Victor Stinner2022-05-034-14/+22
* gh-91320: Fix more old-style cast warnings in C++ (#92247)Victor Stinner2022-05-032-16/+17
* gh-89653: PEP 670: Convert PyBytes macros to functions (#91990)Victor Stinner2022-05-032-10/+43
* gh-92031: Deoptimize Static Code at Finalization (GH-92039)Dennis Sweeney2022-05-031-0/+186
* gh-92135: Rename _Py_reinterpret_cast() to _Py_CAST() (#92230)Victor Stinner2022-05-039-24/+24
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+3
* gh-92135: Fix _Py_reinterpret_cast() for const (#92138)Victor Stinner2022-05-023-9/+18
* gh-90822: Make `PY_SSIZE_T_MAX` and `PY_SSIZE_T_MIN` constant expression (GH-...Ganesh Kathiresan2022-05-021-5/+6
* bpo-43224: Implement substitution of unpacked TypeVarTuple in C (GH-31828)Serhiy Storchaka2022-04-302-0/+2
* gh-91603: Speed up isinstance/issubclass on union types (GH-91631)Yurii Karabas2022-04-281-0/+1
* gh-89479: Export _Py_GetSpecializationStats() internal function (#92011)Victor Stinner2022-04-281-2/+3
* gh-91869: Fix tracing of specialized instructions with extended args (GH-91945)Dennis Sweeney2022-04-282-67/+68
* gh-91320: Add _Py_reinterpret_cast() macro (#91959)Victor Stinner2022-04-279-17/+39
* gh-91719: Add pycore_opcode.h internal header file (#91906)Victor Stinner2022-04-252-564/+583
* gh-64783: Fix signal.NSIG value on FreeBSD (#91929)Victor Stinner2022-04-252-16/+35
* gh-89653: PEP 670: Functions don't cast pointers (#91697)Victor Stinner2022-04-252-52/+113
* gh-80527: Deprecate PEP 623 Unicode functions (#91801)Victor Stinner2022-04-221-5/+11
* Docs: Clarify availability of PyOS_CheckStack (GH-91816)Petr Viktorin2022-04-221-0/+1
* gh-89653: Add assertions to unicodeobject.h functions (#91800)Victor Stinner2022-04-211-0/+7
* gh-89653: PEP 670: Convert unicodeobject.h macros to functions (#91799)Victor Stinner2022-04-211-18/+44
* gh-79315: Add Include/cpython/pythread.h header (#91798)Victor Stinner2022-04-212-44/+45
* gh-79315: Add Include/cpython/modsupport.h header (#91797)Victor Stinner2022-04-212-106/+113
* gh-89653: PEP 670: Group deprecated API in unicodeobject.h (#91796)Victor Stinner2022-04-211-56/+58
* gh-91768: C API no longer use "const PyObject*" type (#91769)Victor Stinner2022-04-212-15/+11
* gh-89653: PEP 670: Convert unicodeobject.h macros to functions (#91773)Victor Stinner2022-04-211-57/+74
* GH-91719: Make MSVC generate somewhat faster switch code (#91718)Guido van Rossum2022-04-212-1/+79
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-212-27/+54
* gh-89653: PEP 670: Convert tuple macros to functions (#91786)Victor Stinner2022-04-212-11/+29
* gh-91782: Define static_assert() macro on FreeBSD (#91787)Victor Stinner2022-04-211-0/+9
* gh-89653: PEP 670: Convert PyWeakref_GET_OBJECT() to function (#91785)Victor Stinner2022-04-211-10/+16
* gh-89653: PEP 670: Convert unicodeobject.h macros to functions (#91705)Victor Stinner2022-04-211-41/+61
* gh-90667: Add specializations of Py_DECREF when types are known (GH-30872)Dennis Sweeney2022-04-194-8/+39
* gh-91576: Speed up iteration of strings (#91574)Kumar Aditya2022-04-181-0/+1
* gh-78607: Replace __ltrace__ with __lltrace__ (GH-91619)Dennis Sweeney2022-04-162-2/+2