diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:29:26 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:29:26 (GMT) |
commit | ecf41da83e5db98734b19f205899168cc56da943 (patch) | |
tree | e22e4354b5cc1e47d3781176a203037554eb3474 /Doc/c-api/none.rst | |
parent | 9f2e377beb4731c770f1383f2bae92fe1b8cc2e2 (diff) | |
download | cpython-ecf41da83e5db98734b19f205899168cc56da943.zip cpython-ecf41da83e5db98734b19f205899168cc56da943.tar.gz cpython-ecf41da83e5db98734b19f205899168cc56da943.tar.bz2 |
Issue #19795: Mark up None as literal text.
Diffstat (limited to 'Doc/c-api/none.rst')
-rw-r--r-- | Doc/c-api/none.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/c-api/none.rst b/Doc/c-api/none.rst index b9ac269..45568fe 100644 --- a/Doc/c-api/none.rst +++ b/Doc/c-api/none.rst @@ -2,8 +2,8 @@ .. _noneobject: -The None Object ---------------- +The ``None`` Object +------------------- .. index:: object: None @@ -23,4 +23,4 @@ same reason. .. c:macro:: Py_RETURN_NONE Properly handle returning :c:data:`Py_None` from within a C function (that is, - increment the reference count of None and return it.) + increment the reference count of ``None`` and return it.) |