commit | 254348e201647ad9d264de2cc0fde031e8214719 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Nov 21 19:29:53 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Nov 21 19:29:53 2007 +0000 |
tree | f5e6c42989ce114d4a9385404a6b23b2b1ff12af | |
parent | 905a904723abadc627be60bf944e2ca76329b06e [diff] |
Rename buffer -> bytearray.
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 1b1593e..4ce774b 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c
@@ -1879,7 +1879,7 @@ SETBUILTIN("True", Py_True); SETBUILTIN("bool", &PyBool_Type); SETBUILTIN("memoryview", &PyMemoryView_Type); - SETBUILTIN("buffer", &PyBytes_Type); + SETBUILTIN("bytearray", &PyBytes_Type); SETBUILTIN("bytes", &PyString_Type); SETBUILTIN("classmethod", &PyClassMethod_Type); #ifndef WITHOUT_COMPLEX