]> granicus.if.org Git - python/commitdiff
quaint and completely out of date comment
authorBenjamin Peterson <benjamin@python.org>
Sat, 11 Jun 2011 21:33:35 +0000 (16:33 -0500)
committerBenjamin Peterson <benjamin@python.org>
Sat, 11 Jun 2011 21:33:35 +0000 (16:33 -0500)
Objects/object.c

index 80ffddbdb51d5e33b44b8303e5b375aa453d078f..05c52f15788a0e5b8a85f584e5d39f2cf1cf4804 100644 (file)
@@ -1,5 +1,5 @@
 
-/* Generic object operations; and implementation of None (NoObject) */
+/* Generic object operations; and implementation of None */
 
 #include "Python.h"
 #include "frameobject.h"
@@ -1255,10 +1255,9 @@ PyObject_Dir(PyObject *obj)
 }
 
 /*
-NoObject is usable as a non-NULL undefined value, used by the macro None.
+None is as a non-NULL undefined value.
 There is (and should be!) no way to create other objects of this type,
 so there is exactly one (which is indestructible, by the way).
-(XXX This type and the type of NotImplemented below should be unified.)
 */
 
 /* ARGSUSED */