| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-89653: PEP 670: Amend docs (GH-91813) | Erlend Egeberg Aasland | 2022-04-22 | 4 | -17/+18 |
|
|
* | Docs: Clarify availability of PyOS_CheckStack (GH-91816) | Petr Viktorin | 2022-04-22 | 1 | -3/+3 |
|
|
* | gh-91768: C API no longer use "const PyObject*" type (#91769) | Victor Stinner | 2022-04-21 | 1 | -7/+12 |
|
|
* | GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less... | Mark Shannon | 2022-04-21 | 1 | -6/+15 |
|
|
* | GH-88756: Update docs for PEP 523 eval function type. (GH-91788) | Mark Shannon | 2022-04-21 | 1 | -1/+4 |
|
|
* | bpo-40421: Cleanup PyFrame C API (GH-32417) | Victor Stinner | 2022-04-19 | 1 | -16/+2 |
|
|
* | gh-91118: Fix docstrings that do not honor --without-doc-strings (#31769) | Oleg Iarygin | 2022-04-18 | 1 | -4/+4 |
|
|
* | gh-90501: Add PyErr_GetHandledException and PyErr_SetHandledException (GH-30531) | Irit Katriel | 2022-04-15 | 1 | -4/+40 |
|
|
* | Add new PyFrame_GetLasti C-API function (GH-32413) | Mark Shannon | 2022-04-08 | 1 | -0/+11 |
|
|
* | c-api docs: There are five fields, not four (GH-32379) | Jelle Zijlstra | 2022-04-07 | 1 | -1/+1 |
|
|
* | bpo-47115: Document which parts of structs are in limited API/stable ABI (GH-... | Petr Viktorin | 2022-04-06 | 1 | -2/+4 |
|
|
* | Revert "bpo-46850: Move _PyEval_EvalFrameDefault() to internal C API (GH-3205... | Victor Stinner | 2022-04-06 | 1 | -10/+1 |
|
|
* | More minor fixes to C API docs (GH-31714) | Jelle Zijlstra | 2022-04-02 | 5 | -11/+9 |
|
|
* | More minor fixes to C API docs (GH-31525) | Jelle Zijlstra | 2022-04-02 | 13 | -29/+30 |
|
|
* | bpo-46850: Move _PyInterpreterState_SetEvalFrameFunc() to internal C API (GH-... | Victor Stinner | 2022-04-01 | 1 | -1/+10 |
|
|
* | bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114) | Mark Shannon | 2022-03-31 | 1 | -0/+35 |
|
|
* | bpo-47164: Add _PyCFunction_CAST() macro (GH-32192) | Victor Stinner | 2022-03-31 | 1 | -0/+3 |
|
|
* | bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124) | Hugo van Kemenade | 2022-03-30 | 1 | -1/+1 |
|
|
* | bpo-42197: Don't create `f_locals` dictionary unless we actually need it. (GH... | Mark Shannon | 2022-03-25 | 1 | -0/+11 |
|
|
* | bpo-46836: Add Doc/c-api/frame.rst (GH-32051) | Victor Stinner | 2022-03-23 | 4 | -43/+49 |
|
|
* | bpo-46906: Mention native endian in PyFloat_Pack8() doc (GH-31866) | Victor Stinner | 2022-03-14 | 1 | -2/+6 |
|
|
* | bpo-46906: Add PyFloat_Pack8() to the C API (GH-31657) | Victor Stinner | 2022-03-11 | 1 | -0/+82 |
|
|
* | Add missing "to" to two tp_flags notes (GH-31624) | Brandt Bucher | 2022-03-01 | 1 | -2/+2 |
|
|
* | bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530) | Victor Stinner | 2022-02-25 | 1 | -2/+10 |
|
|
* | bpo-40421: Fix PyFrame_GetCode() documentation (GH-31535) | Victor Stinner | 2022-02-23 | 1 | -2/+2 |
|
|
* | Minor fixes to C API docs (GH-31501) | Jelle Zijlstra | 2022-02-23 | 4 | -24/+28 |
|
|
* | bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081) | Petr Viktorin | 2022-02-11 | 1 | -0/+17 |
|
|
* | bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa... | Kumar Aditya | 2022-02-04 | 1 | -0/+4 |
|
|
* | bpo-45459: Add Py_buffer to limited API (GH-29991) | Christian Heimes | 2022-02-02 | 2 | -6/+12 |
|
|
* | no-issue: Fix documentation typos. (GH-30576) | Piotr Fusik | 2022-01-20 | 1 | -1/+1 |
|
|
* | bpo-22039: [doc] clarify that there are no plans to disable deleting an attri... | Irit Katriel | 2022-01-19 | 1 | -2/+3 |
|
|
* | closes bpo-46253: Change Py_UNICODE to Py_UCS4 in the C API docs to match the... | Julian Gilbey | 2022-01-11 | 1 | -17/+17 |
|
|
* | bpo-46140: take more Py_buffer arguments as const * (GH-30217) | David Hewitt | 2021-12-22 | 2 | -6/+5 |
|
|
* | Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208) | Raymond Hettinger | 2021-12-19 | 1 | -1/+0 |
|
|
* | bpo-46131: add fastpath for PyFloat_Check() (#30200) | Matti Picus | 2021-12-19 | 1 | -0/+1 |
|
|
* | Doc: some rst linting. (GH-30149) | Julien Palard | 2021-12-17 | 1 | -1/+1 |
|
|
* | bpo-45855: document that `no_block` has no use anymore in PyCapsule_Import (#... | Georg Brandl | 2021-12-12 | 1 | -3/+4 |
|
|
* | bpo-43931: Export Python version as API data (GH-25577) | Gabriele N. Tornetta | 2021-12-10 | 2 | -0/+11 |
|
|
* | bpo-45582: Port getpath[p].c to Python (GH-29041) | Steve Dower | 2021-12-03 | 1 | -13/+28 |
|
|
* | bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886) | Victor Stinner | 2021-12-02 | 1 | -3/+6 |
|
|
* | bpo-45711: Change exc_info related APIs to derive type and traceback from the... | Irit Katriel | 2021-11-30 | 1 | -1/+6 |
|
|
* | bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r... | Brett Cannon | 2021-11-20 | 2 | -13/+14 |
|
|
* | bpo-28737: Document when tp_dealloc should call PyObject_GC_UnTrack() (GH-29246) | Sam Gross | 2021-10-27 | 2 | -8/+20 |
|
|
* | [doc]: Fix missing space in c-api/init.rst and add rstlint rule (GH-28988) | Julien Palard | 2021-10-19 | 1 | -2/+2 |
|
|
* | bpo-43760: Add PyThreadState_EnterTracing() (GH-28542) | Victor Stinner | 2021-10-15 | 1 | -0/+24 |
|
|
* | [doc] Fix typos found using codespell (GH-28744) | Christian Clauss | 2021-10-05 | 2 | -3/+3 |
|
|
* | bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) | Serhiy Storchaka | 2021-09-22 | 1 | -3/+3 |
|
|
* | Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450) | Serhiy Storchaka | 2021-09-19 | 1 | -1/+1 |
|
|
* | Fix minor typo in Doc/c-api/type.rst (GH-28432) | Konstantin Popov | 2021-09-18 | 1 | -1/+1 |
|
|
* | bpo-45116: Py_DEBUG ignores Py_ALWAYS_INLINE (GH-28419) | Victor Stinner | 2021-09-17 | 1 | -0/+3 |
|
|