| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975) | Victor Stinner | 2021-10-15 | 1 | -2/+2 |
|
|
* | bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969) | Victor Stinner | 2021-10-15 | 1 | -1/+1 |
|
|
* | bpo-35134: Add Include/cpython/floatobject.h (GH-28957) | Victor Stinner | 2021-10-14 | 1 | -0/+1 |
|
|
* | bpo-45340: Don't create object dictionaries unless actually needed (GH-28802) | Mark Shannon | 2021-10-13 | 1 | -54/+131 |
|
|
* | bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895) | Victor Stinner | 2021-10-12 | 1 | -6/+7 |
|
|
* | bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891) | Victor Stinner | 2021-10-11 | 1 | -2/+2 |
|
|
* | bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503) | Victor Stinner | 2021-09-21 | 1 | -2/+1 |
|
|
* | bpo-45061: Detect Py_DECREF(Py_True) bug (GH-28089) | Victor Stinner | 2021-08-31 | 1 | -6/+3 |
|
|
* | bpo-44654: Refactor and clean up the union type implementation (GH-27196) | Serhiy Storchaka | 2021-07-17 | 1 | -2/+2 |
|
|
* | bpo-43770: Cleanup _PyObject_GetMethod() (GH-26946) | Victor Stinner | 2021-07-01 | 1 | -21/+19 |
|
|
* | bpo-39947: Remove old private trashcan C API functions (GH-26869) | Victor Stinner | 2021-06-23 | 1 | -48/+8 |
|
|
* | bpo-38530: Offer suggestions on AttributeError (#16856) | Pablo Galindo | 2021-04-14 | 1 | -10/+43 |
|
|
* | bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227) | Victor Stinner | 2021-04-10 | 1 | -0/+27 |
|
|
* | bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266) | Victor Stinner | 2021-04-08 | 1 | -0/+1 |
|
|
* | bpo-43770: _PyTypes_Init() inits more static types (GH-25265) | Victor Stinner | 2021-04-07 | 1 | -0/+23 |
|
|
* | bpo-43770: Sort types in _PyTypes_Init() (GH-25263) | Victor Stinner | 2021-04-07 | 1 | -71/+76 |
|
|
* | bpo-43688: Support the limited C API in debug mode (GH-25131) | Victor Stinner | 2021-04-02 | 1 | -0/+17 |
|
|
* | bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) | Victor Stinner | 2020-12-01 | 1 | -2/+2 |
|
|
* | bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235) | Hai Shi | 2020-11-24 | 1 | -0/+9 |
|
|
* | bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152) | Victor Stinner | 2020-11-05 | 1 | -0/+16 |
|
|
* | bpo-41991: Remove _PyObject_HasAttrId (GH-22629) | Serhiy Storchaka | 2020-10-10 | 1 | -11/+0 |
|
|
* | Fix comment about PyObject_IsTrue. (GH-22343) | Stefan Pochmann | 2020-10-07 | 1 | -1/+1 |
|
|
* | Fix a small grammatical mistake in a comment (GH-21526) | Brett Cannon | 2020-07-17 | 1 | -1/+1 |
|
|
* | bpo-40989: PyObject_INIT() becomes an alias to PyObject_Init() (GH-20901) | Victor Stinner | 2020-06-15 | 1 | -7/+9 |
|
|
* | bpo-39465: Use _PyInterpreterState_GET() (GH-20788) | Victor Stinner | 2020-06-10 | 1 | -4/+4 |
|
|
* | bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) | Victor Stinner | 2020-06-10 | 1 | -5/+5 |
|
|
* | bpo-38787: C API for module state access from extension methods (PEP 573) (GH... | Petr Viktorin | 2020-05-07 | 1 | -0/+1 |
|
|
* | bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) | Hai Shi | 2020-04-14 | 1 | -2/+2 |
|
|
* | bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) | Victor Stinner | 2020-04-14 | 1 | -0/+1 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -2/+2 |
|
|
* | bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) | Victor Stinner | 2020-04-07 | 1 | -5/+5 |
|
|
* | bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) | Victor Stinner | 2020-04-07 | 1 | -4/+5 |
|
|
* | bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) | Victor Stinner | 2020-04-06 | 1 | -0/+8 |
|
|
* | bpo-39947: Hide implementation detail of trashcan macros (GH-18971) | Victor Stinner | 2020-03-13 | 1 | -0/+24 |
|
|
* | bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) | Victor Stinner | 2020-03-13 | 1 | -0/+1 |
|
|
* | bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) | Andy Lester | 2020-03-06 | 1 | -2/+2 |
|
|
* | bpo-39873: Cleanup _PyObject_CheckConsistency() (GH-18807) | Victor Stinner | 2020-03-06 | 1 | -1/+0 |
|
|
* | bpo-39873: PyObject_Init() uses PyObject_INIT() (GH-18804) | Victor Stinner | 2020-03-06 | 1 | -9/+2 |
|
|
* | bpo-35712: Make using NotImplemented in a boolean context issue a deprecation... | MojoVampire | 2020-03-03 | 1 | -2/+18 |
|
|
* | bpo-39573: Add Py_SET_SIZE() function (GH-18400) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-39573: Use Py_TYPE() macro in object.c (GH-18398) | Victor Stinner | 2020-02-07 | 1 | -12/+8 |
|
|
* | bpo-39573: Add Py_SET_TYPE() function (GH-18394) | Victor Stinner | 2020-02-07 | 1 | -1/+1 |
|
|
* | bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) | Victor Stinner | 2020-02-07 | 1 | -34/+34 |
|
|
* | bpo-39573: Add Py_SET_REFCNT() function (GH-18389) | Victor Stinner | 2020-02-07 | 1 | -4/+5 |
|
|
* | bpo-39573: Use Py_REFCNT() macro (GH-18388) | Victor Stinner | 2020-02-06 | 1 | -18/+18 |
|
|
* | bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) | Victor Stinner | 2020-02-05 | 1 | -1/+1 |
|
|
* | bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) | Victor Stinner | 2020-02-05 | 1 | -4/+8 |
|
|
* | bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361) | Victor Stinner | 2020-02-05 | 1 | -2/+0 |
|
|
* | bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) | Victor Stinner | 2020-02-05 | 1 | -1/+17 |
|
|
* | bpo-39542: Simplify _Py_NewReference() (GH-18332) | Victor Stinner | 2020-02-03 | 1 | -16/+5 |
|
|