aboutsummaryrefslogtreecommitdiff
path: root/Include
AgeCommit message (Expand)Author
2021-10-12bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner
2021-10-12bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner
2021-10-12bpo-45439: _PyObject_Call() only checks tp_vectorcall_offset once (GH-28890)Victor Stinner
2021-10-12bpo-45412: Move copysign() define to pycore_pymath.h (GH-28889)Victor Stinner
2021-10-11bpo-41123: Remove Py_UNICODE_COPY() and Py_UNICODE_FILL() (GH-28887)Victor Stinner
2021-10-11bpo-45434: Python.h no longer includes <stdlib.h> (GH-28888)Victor Stinner
2021-10-11bpo-45412: Move _Py_SET_53BIT_PRECISION_START to pycore_pymath.h (GH-28882)Victor Stinner
2021-10-11bpo-45412: Update _Py_ADJUST_ERANGE1() comment (GH-28884)Victor Stinner
2021-10-11bpo-45434: Cleanup Python.h header file (GH-28883)Victor Stinner
2021-10-11bpo-45412: Remove Py_SET_ERRNO_ON_MATH_ERROR() macro (GH-28820)Victor Stinner
2021-10-11Restore PEP 523 functionality. (GH-28871)Mark Shannon
2021-10-10bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki
2021-10-09bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado
2021-10-06Fix typos in the Include directory (GH-28745)Christian Clauss
2021-10-06bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon
2021-10-05bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow
2021-10-05Post 3.11.0a1Pablo Galindo
2021-10-05Python 3.11.0a1upstream-v3.11.0a1Pablo Galindo
2021-10-05bpo-43760: Check for tracing using 'bitwise or' instead of branch in dispatch...Mark Shannon
2021-10-01bpo-41710: Add private _PyDeadline_Get() function (GH-28674)Victor Stinner
2021-10-01bpo-41710: Fix PY_TIMEOUT_MAX on Windows (GH-28673)Victor Stinner
2021-09-30bpo-41710: Document _PyTime_t API in pytime.h (GH-28647)Victor Stinner
2021-09-30bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)Victor Stinner
2021-09-30bpo-41710: Add pytime_add() and pytime_mul() (GH-28642)Victor Stinner
2021-09-30bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner
2021-09-28bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow
2021-09-27bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow
2021-09-22bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner
2021-09-22[codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour
2021-09-21bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)Victor Stinner
2021-09-17bpo-45116: Py_DEBUG ignores Py_ALWAYS_INLINE (GH-28419)Victor Stinner
2021-09-17bpo-45116: Add the Py_ALWAYS_INLINE macro (GH-28390)Victor Stinner
2021-09-17bpo-45219: Factor dictkey indexing (GH-28389)Mark Shannon
2021-09-15bpo-21302: Add _PyTime_AsNanoseconds() (GH-28350)Victor Stinner
2021-09-14bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow
2021-09-14bpo-45152: Add HAS_CONST macro and get_const_value() function and useā€¦ (#28...Irit Katriel
2021-09-08bpo-39573: Py_TYPE becomes a static inline function (GH-28128)Victor Stinner
2021-09-07bpo-45123: PyAiter_Check and PyObject_GetAiter fix & rename. (GH-28194)Yury Selivanov
2021-09-03bpo-45094: Add Py_NO_INLINE macro (GH-28140)Victor Stinner
2021-08-27bpo-44945: Specialize BINARY_ADD (GH-27967)Mark Shannon
2021-08-25bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)Mark Shannon
2021-08-18bpo-44874: deprecate Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SAFE_END (GH-27693)Irit Katriel
2021-08-18bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)Dong-hee Na
2021-08-17bpo-44889: Specialize LOAD_METHOD with PEP 659 adaptive interpreter (GH-27722)Ken Jin
2021-08-17bpo-42035: Add PyType_GetQualName() to get a type's qualified name. (GH-27551)Hai Shi
2021-08-16bpo-44900: Add five superinstructions. (GH-27741)Mark Shannon
2021-08-12bpo-44890: Fix AMD build error (GH-27740)Irit Katriel
2021-08-12bpo-44890: collect specialization stats if Py_DEBUG (GH-27731)Irit Katriel
2021-08-10Classify specialization failures. Provides more useful stats, with lower over...Mark Shannon
2021-08-09bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon