summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/2.7.rst
diff options
context:
space:
mode:
authorErlend E. Aasland <erlend@python.org>2023-07-23 20:56:56 (GMT)
committerGitHub <noreply@github.com>2023-07-23 20:56:56 (GMT)
commitb447e19e720e6781025432a40eb72b1cc93ac944 (patch)
treec15526e01a0016e8684200d6e5075680f5c7b340 /Doc/whatsnew/2.7.rst
parent7d41ead9191a18bc473534f6f8bd1095f2232cc2 (diff)
downloadcpython-b447e19e720e6781025432a40eb72b1cc93ac944.zip
cpython-b447e19e720e6781025432a40eb72b1cc93ac944.tar.gz
cpython-b447e19e720e6781025432a40eb72b1cc93ac944.tar.bz2
gh-106948: Docs: Disable links for C standard library functions, OS utility functions and system calls (#107062)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r--Doc/whatsnew/2.7.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst
index 7bc68b0..4b5a31f 100644
--- a/Doc/whatsnew/2.7.rst
+++ b/Doc/whatsnew/2.7.rst
@@ -355,7 +355,7 @@ added as a more powerful replacement for the
This means Python now supports three different modules for parsing
command-line arguments: :mod:`getopt`, :mod:`optparse`, and
:mod:`argparse`. The :mod:`getopt` module closely resembles the C
-library's :c:func:`getopt` function, so it remains useful if you're writing a
+library's :c:func:`!getopt` function, so it remains useful if you're writing a
Python prototype that will eventually be rewritten in C.
:mod:`optparse` becomes redundant, but there are no plans to remove it
because there are many scripts still using it, and there's no