https://github.com/python/cpython/commit/8cc6e5c8751139e86b2a9fa5228795e6c5caaff9
commit: 8cc6e5c8751139e86b2a9fa5228795e6c5caaff9
branch: main
author: Yuxuan Zhang <[email protected]>
committer: brettcannon <[email protected]>
date: 2024-11-12T13:23:40-08:00
summary:
gh-126757: fix minor typo (GH-126758)
files:
M Python/bltinmodule.c
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index a3f41190261a05..85ebd5b00cc18b 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -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);
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]