summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov2021-09-071-2/+2
* bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner2021-09-032-18/+14
* bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon2021-08-273-26/+34
* bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon2021-08-251-7/+37
* bpo-44874: deprecate Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SAFE_END (GH-27693)Irit Katriel2021-08-181-4/+13
* bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)Dong-hee Na2021-08-171-0/+1
* bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin2021-08-172-9/+20
* bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)Hai Shi2021-08-171-0/+1
* bpo-44900: Add five superinstructions. (GH-27741)Mark Shannon2021-08-161-0/+5
* bpo-44890: Fix AMD build error (GH-27740)Irit Katriel2021-08-121-2/+7
* bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel2021-08-121-5/+8
* Classify specialization failures. Provides more useful stats, with lower over...Mark Shannon2021-08-101-1/+3
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-093-2/+10
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-0/+2
* Add option to write specialization stats to files and script to summarize. (G...Mark Shannon2021-08-041-0/+1
* Minor fixes to specialization stats. (GH-27457)Mark Shannon2021-07-291-0/+2
* bpo-44725 : expose specialization stats in python (GH-27192)Irit Katriel2021-07-291-0/+3
* bpo-41103: Resurrect the old buffer protocol. (GH-27437)Inada Naoki2021-07-291-0/+47
* bpo-42035: Add a PyType_GetName() to get type's short name. (GH-23903)Hai Shi2021-07-291-0/+3
* closes bpo-44751: Move crypt.h include from public header to _cryptmodule (GH...Geoffrey Thomas2021-07-271-13/+0
* bpo-44590: Lazily allocate frame objects (GH-27077)Mark Shannon2021-07-267-67/+116
* bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...Petr Viktorin2021-07-231-14/+12
* bpo-44654: Do not export the union type related symbols (GH-27223)Serhiy Storchaka2021-07-181-4/+4
* bpo-44654: Refactor and clean up the union type implementation (GH-27196)Serhiy Storchaka2021-07-172-8/+7
* Remove legacy opcache structs (GH-27164)Ken Jin2021-07-162-25/+0
* bpo-20201: variadic arguments support for AC (GH-18609)Batuhan Taskaya2021-07-161-1/+10
* bpo-26280: Port BINARY_SUBSCR to PEP 659 adaptive interpreter (GH-27043)Irit Katriel2021-07-152-11/+16
* bpo-44207: Add an internal version number to function objects. (GH-27078)Mark Shannon2021-07-121-0/+10
* bpo-43950: Add option to opt-out of PEP-657 (GH-27023)Ammar Askar2021-07-071-0/+1
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-072-4/+6
* bpo-44490: Add __parameters__ and __getitem__ to types.Union (GH-26980)Yurii Karabas2021-07-061-0/+5
* bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)Ammar Askar2021-07-041-1/+1
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-022-4/+23
* bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)Victor Stinner2021-07-011-0/+2
* bpo-44313: generate LOAD_ATTR/CALL_FUNCTION for top-level imported objects (G...Batuhan Taskaya2021-06-301-0/+1
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-231-6/+0
* bpo-39947: Remove old private trashcan C API functions (GH-26869)Victor Stinner2021-06-231-14/+2
* bpo-44458: Ensure BUFFER_BLOCK_SIZE symbol is statically allocated. (GH-26808)Russell Keith-Magee2021-06-221-1/+1
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-212-27/+18
* bpo-44337: Improve LOAD_ATTR specialization (GH-26759)Mark Shannon2021-06-211-0/+1
* bpo-44032: Move pointer to code object from frame-object to frame specials ar...Mark Shannon2021-06-182-2/+9
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-152-8/+2
* Add extra stats for attribute misses (GH-26732)Mark Shannon2021-06-151-0/+5
* bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)Mark Shannon2021-06-143-24/+18
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-122-5/+5
* bpo-44378: Fix a compiler warning in Py_IS_TYPE() (GH-26644)Victor Stinner2021-06-111-1/+3
* bpo-44363: Get test_capi passing with address sanitizer (GH-26639)Mark Shannon2021-06-101-1/+10
* bpo-44348: Move trace-info to thread-state (GH-26623)Mark Shannon2021-06-101-0/+6
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-103-0/+186
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-083-6/+16