gh-126757: fix minor typo (GH-126758)

This commit is contained in:
Yuxuan Zhang 2024-11-12 16:23:40 -05:00 committed by GitHub
parent 4b00aba42e
commit 8cc6e5c875
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -3336,7 +3336,7 @@ _PyBuiltin_Init(PyInterpreterState *interp)
SETBUILTIN("False", Py_False);
SETBUILTIN("True", Py_True);
SETBUILTIN("bool", &PyBool_Type);
SETBUILTIN("memoryview", &PyMemoryView_Type);
SETBUILTIN("memoryview", &PyMemoryView_Type);
SETBUILTIN("bytearray", &PyByteArray_Type);
SETBUILTIN("bytes", &PyBytes_Type);
SETBUILTIN("classmethod", &PyClassMethod_Type);