diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2018-01-06 07:15:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-01-06 07:15:34 (GMT) |
commit | 735ae8d139a673b30b321dc10acfd3d14f0d633b (patch) | |
tree | 027e039ce309a5617d15cdf7f2ef8a1f711fcaaa /Doc/library/exceptions.rst | |
parent | 502d551c6d782963d26957a9e5ff1588946f233f (diff) | |
download | cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.zip cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.tar.gz cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.tar.bz2 |
bpo-29137: Remove fpectl module (#4789)
This module has never been enabled by default, never worked correctly
on x86-64, and caused ABI problems that caused C extension
compatibility. See bpo-29137 for details/discussion.
Diffstat (limited to 'Doc/library/exceptions.rst')
-rw-r--r-- | Doc/library/exceptions.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/exceptions.rst b/Doc/library/exceptions.rst index a6b20a5..c8d32cf 100644 --- a/Doc/library/exceptions.rst +++ b/Doc/library/exceptions.rst @@ -154,10 +154,7 @@ The following exceptions are the exceptions that are usually raised. .. exception:: FloatingPointError - Raised when a floating point operation fails. This exception is always defined, - but can only be raised when Python is configured with the - ``--with-fpectl`` option, or the :const:`WANT_SIGFPE_HANDLER` symbol is - defined in the :file:`pyconfig.h` file. + Not currently used. .. exception:: GeneratorExit |