diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-10 19:30:57 -0700 |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-06-10 22:30:57 -0400 |
commit | a73399d5963d6b1639d935968f4a8baa868c39d3 (patch) | |
tree | 7429f043f408dd393662637e209aa5cfa8e5e077 | |
parent | bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731) (... (diff) | |
download | cpython-a73399d5963d6b1639d935968f4a8baa868c39d3.tar.gz cpython-a73399d5963d6b1639d935968f4a8baa868c39d3.tar.bz2 cpython-a73399d5963d6b1639d935968f4a8baa868c39d3.zip |
bpo-33109: Remove now-obsolete What's New entry for bpo-26510. (GH-7609) (GH-7610)
(cherry picked from commit ef057bfb06cae0718e6d708061649d2e3983e2ef)
Co-authored-by: Ned Deily <nad@python.org>
-rw-r--r-- | Doc/whatsnew/3.7.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index fce073ec172..81ef032f937 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -2340,12 +2340,6 @@ Changes in the Python API instead of a :class:`bytes` instance. (Contributed by Victor Stinner in :issue:`21071`.) -* :mod:`argparse` subparsers are now required by default. This matches the - behaviour in Python 2. To add an optional subparser, pass - ``required=False`` to - :meth:`ArgumentParser.add_subparsers() <argparse.ArgumentParser.add_subparsers>`. - (Contributed by Anthony Sottile in :issue:`26510`.) - * :meth:`ast.literal_eval()` is now stricter. Addition and subtraction of arbitrary numbers are no longer allowed. (Contributed by Serhiy Storchaka in :issue:`31778`.) |