diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-09-27 13:07:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 13:07:28 (GMT) |
commit | d9809e84fbf22ed8d90b212a9322260f7074bc9c (patch) | |
tree | 757f14c55f0922e64351afbc1a14e0315d196ed3 /Doc | |
parent | ea285ad8b69c6ed91fe79edb3b0ea4d9cd6e6011 (diff) | |
download | cpython-d9809e84fbf22ed8d90b212a9322260f7074bc9c.zip cpython-d9809e84fbf22ed8d90b212a9322260f7074bc9c.tar.gz cpython-d9809e84fbf22ed8d90b212a9322260f7074bc9c.tar.bz2 |
gh-101100: Fix sphinx warnings in `library/devmode.rst` (#109963)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/devmode.rst | 5 | ||||
-rw-r--r-- | Doc/tools/.nitignore | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/devmode.rst b/Doc/library/devmode.rst index 914aa45..5b8a9bd 100644 --- a/Doc/library/devmode.rst +++ b/Doc/library/devmode.rst @@ -59,8 +59,9 @@ Effects of the Python Development Mode: ``default``. * Call :func:`faulthandler.enable` at Python startup to install handlers for - the :const:`SIGSEGV`, :const:`SIGFPE`, :const:`SIGABRT`, :const:`SIGBUS` and - :const:`SIGILL` signals to dump the Python traceback on a crash. + the :const:`~signal.SIGSEGV`, :const:`~signal.SIGFPE`, + :const:`~signal.SIGABRT`, :const:`~signal.SIGBUS` and + :const:`~signal.SIGILL` signals to dump the Python traceback on a crash. It behaves as if the :option:`-X faulthandler <-X>` command line option is used or if the :envvar:`PYTHONFAULTHANDLER` environment variable is set to diff --git a/Doc/tools/.nitignore b/Doc/tools/.nitignore index 1dd7676..a5fb940 100644 --- a/Doc/tools/.nitignore +++ b/Doc/tools/.nitignore @@ -53,7 +53,6 @@ Doc/library/csv.rst Doc/library/datetime.rst Doc/library/dbm.rst Doc/library/decimal.rst -Doc/library/devmode.rst Doc/library/difflib.rst Doc/library/doctest.rst Doc/library/email.charset.rst |