diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-10-30 04:20:23 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-10-30 04:20:23 (GMT) |
commit | b8c5f54248369ff89575c1416a98e13e718a4aa4 (patch) | |
tree | ec20c6bef4bf967d94100a25c64399e3f18d4a7e /Doc/whatsnew/2.7.rst | |
parent | 5c6793394066b012b9674681b0815667938ce4d9 (diff) | |
download | cpython-b8c5f54248369ff89575c1416a98e13e718a4aa4.zip cpython-b8c5f54248369ff89575c1416a98e13e718a4aa4.tar.gz cpython-b8c5f54248369ff89575c1416a98e13e718a4aa4.tar.bz2 |
Issue #26638: Work around more CLI options that can’t be linked
* Cannot seem to link directly to main options from the “unittest” module,
because that module has its own set of options
* Mask out linking for options that no longer exist in Python 3
Diffstat (limited to 'Doc/whatsnew/2.7.rst')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index 3e5d434..ad0616b 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -198,8 +198,8 @@ Other new Python3-mode warnings include: * :func:`operator.isCallable` and :func:`operator.sequenceIncludes`, which are not supported in 3.x, now trigger warnings. -* The :option:`-3` switch now automatically - enables the :option:`-Qwarn <-Q>` switch that causes warnings +* The :option:`!-3` switch now automatically + enables the :option:`!-Qwarn` switch that causes warnings about using classic division with integers and long integers. |