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/bytecodes.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/bytecodes.c')
-rw-r--r-- | Python/bytecodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bytecodes.c b/Python/bytecodes.c index 434eb80..8a6222c 100644 --- a/Python/bytecodes.c +++ b/Python/bytecodes.c @@ -1543,7 +1543,7 @@ dummy_func( inst(MAKE_CELL, (--)) { // "initial" is probably NULL but not if it's an arg (or set - // via PyFrame_LocalsToFast() before MAKE_CELL has run). + // via the f_locals proxy before MAKE_CELL has run). PyObject *initial = GETLOCAL(oparg); PyObject *cell = PyCell_New(initial); if (cell == NULL) { |