summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-03-26 00:55:15 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-03-26 00:55:15 (GMT)
commitbe3bd57ba22f7bda63dc0215b49b993a530e6145 (patch)
treea87174ae1006793d5c800a9374d911bfe9daa89b /Doc
parent79fe2a3462f2f9a18092adc88791d332f1e724bb (diff)
downloadcpython-be3bd57ba22f7bda63dc0215b49b993a530e6145.zip
cpython-be3bd57ba22f7bda63dc0215b49b993a530e6145.tar.gz
cpython-be3bd57ba22f7bda63dc0215b49b993a530e6145.tar.bz2
Remove traces of division_warning left over from Python 2 (#10998)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/sys.rst2
-rw-r--r--Doc/whatsnew/3.3.rst4
2 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index b09571f..56906e7 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -232,8 +232,6 @@ always available.
+==============================+==========================================+
| :const:`debug` | -d |
+------------------------------+------------------------------------------+
- | :const:`division_warning` | -Q |
- +------------------------------+------------------------------------------+
| :const:`inspect` | -i |
+------------------------------+------------------------------------------+
| :const:`interactive` | -i |
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
index 7f05a84..2199f0a 100644
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -133,3 +133,7 @@ that may require changes to your code:
``import site`` will not add site-specific paths to the module search
paths. In previous versions, it did. See changeset for doc changes in
various files. Contributed by Carl Meyer with editions by Éric Araujo.
+
+.. Issue #10998: -Q command-line flags are related artifacts have been
+ removed. Code checking sys.flags.division_warning will need updating.
+ Contributed by Éric Araujo.