Skip to content

Commit 8cc6e5c

Browse files
authored
pythongh-126757: fix minor typo (pythonGH-126758)
1 parent 4b00aba commit 8cc6e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/bltinmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3336,7 +3336,7 @@ _PyBuiltin_Init(PyInterpreterState *interp)
33363336
SETBUILTIN("False", Py_False);
33373337
SETBUILTIN("True", Py_True);
33383338
SETBUILTIN("bool", &PyBool_Type);
3339-
SETBUILTIN("memoryview", &PyMemoryView_Type);
3339+
SETBUILTIN("memoryview", &PyMemoryView_Type);
33403340
SETBUILTIN("bytearray", &PyByteArray_Type);
33413341
SETBUILTIN("bytes", &PyBytes_Type);
33423342
SETBUILTIN("classmethod", &PyClassMethod_Type);

0 commit comments

Comments
 (0)