diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-30 20:44:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-30 20:44:55 (GMT) |
commit | 2c921c65e9d0aa7e3a38c96a22d5eec56724da72 (patch) | |
tree | 385c930239295a07f30439dec59b6ffc63a08dda /Doc/howto | |
parent | f2ba17be2aec873741c2d8a55b1342afa360aec2 (diff) | |
download | cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.zip cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.tar.gz cpython-2c921c65e9d0aa7e3a38c96a22d5eec56724da72.tar.bz2 |
[3.8] bpo-38600: NULL -> ``NULL``. (GH-17001) (GH-17003)
Also fix some other formatting.
(cherry picked from commit e835b31d2b212c3c7820364398979cae2a9740b2)
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/clinic.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst index cfd9f2e..5004182 100644 --- a/Doc/howto/clinic.rst +++ b/Doc/howto/clinic.rst @@ -1070,7 +1070,7 @@ Currently Argument Clinic supports only a few return converters: DecodeFSDefault None of these take parameters. For the first three, return -1 to indicate -error. For ``DecodeFSDefault``, the return type is ``const char *``; return a NULL +error. For ``DecodeFSDefault``, the return type is ``const char *``; return a ``NULL`` pointer to indicate an error. (There's also an experimental ``NoneType`` converter, which lets you |