[Python-3000-checkins] r55907 - python/branches/p3yk/Include/object.h

georg.brandl python-3000-checkins at python.org
Mon Jun 11 19:05:48 CEST 2007


Author: georg.brandl
Date: Mon Jun 11 19:05:47 2007
New Revision: 55907

Modified:
   python/branches/p3yk/Include/object.h
Log:
Add a comment to explain that nb_oct and nb_hex are nonfunctional.


Modified: python/branches/p3yk/Include/object.h
==============================================================================
--- python/branches/p3yk/Include/object.h	(original)
+++ python/branches/p3yk/Include/object.h	Mon Jun 11 19:05:47 2007
@@ -171,6 +171,7 @@
 	unaryfunc nb_int;
 	unaryfunc nb_long;
 	unaryfunc nb_float;
+	/* NB: nb_oct and nb_hex are not used anymore. */
 	unaryfunc nb_oct;
 	unaryfunc nb_hex;
 


More information about the Python-3000-checkins mailing list