]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-126757: fix minor typo (GH-126758)
authorYuxuan Zhang <github@z-yx.cc>
Tue, 12 Nov 2024 21:23:40 +0000 (16:23 -0500)
committerGitHub <noreply@github.com>
Tue, 12 Nov 2024 21:23:40 +0000 (13:23 -0800)
Python/bltinmodule.c

index a3f41190261a0532e034306919f8dc3299f456e8..85ebd5b00cc18bf8c876d0b8aec8c5bfe823055e 100644 (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);