summaryrefslogtreecommitdiffstats
path: root/Doc/library/gc.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-10-30 19:37:16 (GMT)
committerGitHub <noreply@github.com>2019-10-30 19:37:16 (GMT)
commite835b31d2b212c3c7820364398979cae2a9740b2 (patch)
treeb4480396678dc575c8f183f0e5add28ee7f36604 /Doc/library/gc.rst
parent1d8da61f5ad26274556e0bbce260ce292d0402a1 (diff)
downloadcpython-e835b31d2b212c3c7820364398979cae2a9740b2.zip
cpython-e835b31d2b212c3c7820364398979cae2a9740b2.tar.gz
cpython-e835b31d2b212c3c7820364398979cae2a9740b2.tar.bz2
bpo-38600: NULL -> ``NULL``. (GH-17001)
Also fix some other formatting.
Diffstat (limited to 'Doc/library/gc.rst')
-rw-r--r--Doc/library/gc.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst
index 084cd6a..366861c 100644
--- a/Doc/library/gc.rst
+++ b/Doc/library/gc.rst
@@ -212,7 +212,7 @@ values but should not rebind them):
A list of objects which the collector found to be unreachable but could
not be freed (uncollectable objects). Starting with Python 3.4, this
list should be empty most of the time, except when using instances of
- C extension types with a non-NULL ``tp_del`` slot.
+ C extension types with a non-``NULL`` ``tp_del`` slot.
If :const:`DEBUG_SAVEALL` is set, then all unreachable objects will be
added to this list rather than freed.