diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-06-01 04:23:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-01 04:23:04 (GMT) |
commit | 0a266f7e74ce1ff4ad6e88f05473cc6a22ab7e20 (patch) | |
tree | 679ce41bab03bcf4891f8c46fa141407a4bd7db0 /Python/sysmodule.c | |
parent | a5272e63efc003a30a2b603b512d367282a24209 (diff) | |
download | cpython-0a266f7e74ce1ff4ad6e88f05473cc6a22ab7e20.zip cpython-0a266f7e74ce1ff4ad6e88f05473cc6a22ab7e20.tar.gz cpython-0a266f7e74ce1ff4ad6e88f05473cc6a22ab7e20.tar.bz2 |
[3.13] gh-74929: PEP 667 C API documentation (gh-119892)
* Add docs for new APIs
* Add soft-deprecation notices
* Add What's New porting entries
* Update comments referencing `PyFrame_LocalsToFast()` to mention the proxy instead
* Other related cleanups found when looking for refs to the deprecated APIs
(cherry picked from commit 3859e09e3d92d004978dd838f0511364e7edfb94)
Co-authored-by: Alyssa Coghlan <ncoghlan@gmail.com>
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 4da13e4..00aa955 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -35,7 +35,6 @@ Data members: #include "pycore_sysmodule.h" // export _PySys_GetSizeOf() #include "pycore_tuple.h" // _PyTuple_FromArray() -#include "frameobject.h" // PyFrame_FastToLocalsWithError() #include "pydtrace.h" // PyDTrace_AUDIT() #include "osdefs.h" // DELIM #include "stdlib_module_names.h" // _Py_stdlib_module_names |