Skip to content

Commit 22c2bbe

Browse files
committed
Change the tp_name to types.FrameLocalsProxyType.
1 parent 5923263 commit 22c2bbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Objects/frameobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ static PyMethodDef framelocalsproxy_methods[] = {
914914
};
915915

916916
PyDoc_STRVAR(framelocalsproxy_doc,
917-
"FrameLocalsProxy($frame)\n"
917+
"FrameLocalsProxyType($frame)\n"
918918
"--\n"
919919
"\n"
920920
"Create a write-through view of the locals dictionary for a frame.\n"
@@ -924,7 +924,7 @@ PyDoc_STRVAR(framelocalsproxy_doc,
924924

925925
PyTypeObject PyFrameLocalsProxy_Type = {
926926
PyVarObject_HEAD_INIT(&PyType_Type, 0)
927-
.tp_name = "FrameLocalsProxy",
927+
.tp_name = "types.FrameLocalsProxyType",
928928
.tp_basicsize = sizeof(PyFrameLocalsProxyObject),
929929
.tp_dealloc = framelocalsproxy_dealloc,
930930
.tp_repr = &framelocalsproxy_repr,

0 commit comments

Comments
 (0)