[Python-3000-checkins] r58417 - python/branches/py3k-importlib/Python/bltinmodule.c

brett.cannon python-3000-checkins at python.org
Thu Oct 11 23:50:17 CEST 2007


Author: brett.cannon
Date: Thu Oct 11 23:50:17 2007
New Revision: 58417

Modified:
   python/branches/py3k-importlib/Python/bltinmodule.c
Log:
Fix a boo-boo from the last merge where I accidentally undid the merged change.


Modified: python/branches/py3k-importlib/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k-importlib/Python/bltinmodule.c	(original)
+++ python/branches/py3k-importlib/Python/bltinmodule.c	Thu Oct 11 23:50:17 2007
@@ -1787,7 +1787,6 @@
 	SETBUILTIN("True",		Py_True);
 	SETBUILTIN("basestring",	&PyBaseString_Type);
 	SETBUILTIN("bool",		&PyBool_Type);
-	SETBUILTIN("buffer",		&PyBuffer_Type);
         SETBUILTIN("memoryview",        &PyMemoryView_Type);
 	SETBUILTIN("bytes",		&PyBytes_Type);
 	SETBUILTIN("classmethod",	&PyClassMethod_Type);


More information about the Python-3000-checkins mailing list