diff options
| author | Carl Meyer <carl@oddbird.net> | 2023-04-28 19:20:50 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-28 19:20:50 (GMT) |
| commit | ebf97c50f25d61e15671a4658f5718f214c35a98 (patch) | |
| tree | 47aae8fbc0e66dbae3186a5a72b7d3995ddedbd3 /Include/internal/pycore_code.h | |
| parent | 83aa496f81f86b46caf249a8ff7e168e6b27622d (diff) | |
| download | cpython-ebf97c50f25d61e15671a4658f5718f214c35a98.zip cpython-ebf97c50f25d61e15671a4658f5718f214c35a98.tar.gz cpython-ebf97c50f25d61e15671a4658f5718f214c35a98.tar.bz2 | |
gh-103978: avoid using 'class' as an identifier (#103979)
Diffstat (limited to 'Include/internal/pycore_code.h')
| -rw-r--r-- | Include/internal/pycore_code.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_code.h b/Include/internal/pycore_code.h index 7d5d5e0..86fd48b 100644 --- a/Include/internal/pycore_code.h +++ b/Include/internal/pycore_code.h @@ -226,7 +226,7 @@ extern int _PyLineTable_PreviousAddressRange(PyCodeAddressRange *range); /* Specialization functions */ -extern void _Py_Specialize_LoadSuperAttr(PyObject *global_super, PyObject *class, PyObject *self, +extern void _Py_Specialize_LoadSuperAttr(PyObject *global_super, PyObject *cls, PyObject *self, _Py_CODEUNIT *instr, PyObject *name, int load_method); extern void _Py_Specialize_LoadAttr(PyObject *owner, _Py_CODEUNIT *instr, PyObject *name); |
