[Python-checkins] r62021 - python/trunk/Include/object.h

benjamin.peterson python-checkins at python.org
Sat Mar 29 00:11:02 CET 2008


Author: benjamin.peterson
Date: Sat Mar 29 00:11:01 2008
New Revision: 62021

Modified:
   python/trunk/Include/object.h
Log:
NIL => NULL


Modified: python/trunk/Include/object.h
==============================================================================
--- python/trunk/Include/object.h	(original)
+++ python/trunk/Include/object.h	Sat Mar 29 00:11:01 2008
@@ -643,7 +643,7 @@
 objects that don't contain references to other objects or heap memory
 this can be the standard function free().  Both macros can be used
 wherever a void expression is allowed.  The argument must not be a
-NIL pointer.  If it may be NIL, use Py_XINCREF/Py_XDECREF instead.
+NULL pointer.  If it may be NULL, use Py_XINCREF/Py_XDECREF instead.
 The macro _Py_NewReference(op) initialize reference counts to 1, and
 in special builds (Py_REF_DEBUG, Py_TRACE_REFS) performs additional
 bookkeeping appropriate to the special build.


More information about the Python-checkins mailing list