summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-03-28 23:11:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-03-28 23:11:01 (GMT)
commita45ab9f37d23eb9c65f95cf64ff0e2e9c10dad21 (patch)
treec553f9c518cdb55f5766fd98eb589da109153dc0
parent1725f2470b19f381f4c244ef6c8a4a05896dbdf7 (diff)
downloadcpython-a45ab9f37d23eb9c65f95cf64ff0e2e9c10dad21.zip
cpython-a45ab9f37d23eb9c65f95cf64ff0e2e9c10dad21.tar.gz
cpython-a45ab9f37d23eb9c65f95cf64ff0e2e9c10dad21.tar.bz2
NIL => NULL
-rw-r--r--Include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index bf0f625..6ec3cbf 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -643,7 +643,7 @@ the refcount falls to 0; for
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.