We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5923263 commit 22c2bbeCopy full SHA for 22c2bbe
Objects/frameobject.c
@@ -914,7 +914,7 @@ static PyMethodDef framelocalsproxy_methods[] = {
914
};
915
916
PyDoc_STRVAR(framelocalsproxy_doc,
917
-"FrameLocalsProxy($frame)\n"
+"FrameLocalsProxyType($frame)\n"
918
"--\n"
919
"\n"
920
"Create a write-through view of the locals dictionary for a frame.\n"
@@ -924,7 +924,7 @@ PyDoc_STRVAR(framelocalsproxy_doc,
924
925
PyTypeObject PyFrameLocalsProxy_Type = {
926
PyVarObject_HEAD_INIT(&PyType_Type, 0)
927
- .tp_name = "FrameLocalsProxy",
+ .tp_name = "types.FrameLocalsProxyType",
928
.tp_basicsize = sizeof(PyFrameLocalsProxyObject),
929
.tp_dealloc = framelocalsproxy_dealloc,
930
.tp_repr = &framelocalsproxy_repr,
0 commit comments