diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:37:13 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:37:13 (GMT) |
commit | 989db5c880cbe85e49857cf44daf8b6c9ccbe0b6 (patch) | |
tree | 2e6fb67dca920efd5e8bdae70706badcc3472e43 /Doc/library/code.rst | |
parent | 24c3b4928eb3046a02b55ab4317cee28aa1c56ba (diff) | |
parent | ecf41da83e5db98734b19f205899168cc56da943 (diff) | |
download | cpython-989db5c880cbe85e49857cf44daf8b6c9ccbe0b6.zip cpython-989db5c880cbe85e49857cf44daf8b6c9ccbe0b6.tar.gz cpython-989db5c880cbe85e49857cf44daf8b6c9ccbe0b6.tar.bz2 |
Issue #19795: Mark up None as literal text.
Diffstat (limited to 'Doc/library/code.rst')
-rw-r--r-- | Doc/library/code.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/code.rst b/Doc/library/code.rst index 4cce1fa..e2c47ba 100644 --- a/Doc/library/code.rst +++ b/Doc/library/code.rst @@ -150,7 +150,7 @@ interpreter objects as well as the following additions. The optional *exitmsg* argument specifies an exit message printed when exiting. Pass the empty string to suppress the exit message. If *exitmsg* is not given or - None, a default message is printed. + ``None``, a default message is printed. .. versionchanged:: 3.4 To suppress printing any banner, pass an empty string. |