File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -816,13 +816,13 @@ Porting to Python 3.11
816
816
:c:func: `Py_DECREF `.
817
817
* ``f_back ``: changed (see below), use :c:func: `PyFrame_GetBack `.
818
818
* ``f_builtins ``: removed,
819
- use ``PyObject_GetAttrString(frame, "f_builtins") ``.
819
+ use ``PyObject_GetAttrString((PyObject*) frame, "f_builtins") ``.
820
820
* ``f_globals ``: removed,
821
- use ``PyObject_GetAttrString(frame, "f_globals") ``.
821
+ use ``PyObject_GetAttrString((PyObject*) frame, "f_globals") ``.
822
822
* ``f_locals ``: removed,
823
- use ``PyObject_GetAttrString(frame, "f_locals") ``.
823
+ use ``PyObject_GetAttrString((PyObject*) frame, "f_locals") ``.
824
824
* ``f_lasti ``: removed,
825
- use ``PyObject_GetAttrString(frame, "f_lasti") ``.
825
+ use ``PyObject_GetAttrString((PyObject*) frame, "f_lasti") ``.
826
826
827
827
The following fields were removed entirely, as they were details
828
828
of the old implementation:
You can’t perform that action at this time.
0 commit comments