[Python-3000-checkins] r59250 - python/branches/py3k/Objects/descrobject.c

guido.van.rossum python-3000-checkins at python.org
Sat Dec 1 00:30:41 CET 2007


Author: guido.van.rossum
Date: Sat Dec  1 00:30:40 2007
New Revision: 59250

Modified:
   python/branches/py3k/Objects/descrobject.c
Log:
Rename the internal name of dictproxy -> dict_proxy,
in analogy with dict_keys etc.


Modified: python/branches/py3k/Objects/descrobject.c
==============================================================================
--- python/branches/py3k/Objects/descrobject.c	(original)
+++ python/branches/py3k/Objects/descrobject.c	Sat Dec  1 00:30:40 2007
@@ -788,7 +788,7 @@
 
 PyTypeObject PyDictProxy_Type = {
 	PyVarObject_HEAD_INIT(&PyType_Type, 0)
-	"dictproxy",				/* tp_name */
+	"dict_proxy",				/* tp_name */
 	sizeof(proxyobject),			/* tp_basicsize */
 	0,					/* tp_itemsize */
 	/* methods */


More information about the Python-3000-checkins mailing list