diff options
author | INADA Naoki <songofacandy@gmail.com> | 2016-11-24 08:21:47 (GMT) |
---|---|---|
committer | INADA Naoki <songofacandy@gmail.com> | 2016-11-24 08:21:47 (GMT) |
commit | 6caaf372de064bf1ecc56638e45e7e365c48afdb (patch) | |
tree | 66eaeb0f5ba7f3dfc5731a68304102b39630414a /Doc/whatsnew | |
parent | d2140cce44c2486d0a94f3a8b75276b28f6cc2f4 (diff) | |
parent | f576343179ca2b541189804c52e912b258d57d75 (diff) | |
download | cpython-6caaf372de064bf1ecc56638e45e7e365c48afdb.zip cpython-6caaf372de064bf1ecc56638e45e7e365c48afdb.tar.gz cpython-6caaf372de064bf1ecc56638e45e7e365c48afdb.tar.bz2 |
Issue #28532: Add what's new entry for python -VV option
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index ce59c82..44aab85 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -1832,6 +1832,18 @@ Build and C API Changes functions will now accept :term:`path-like objects <path-like object>`. +Other Improvements +================== + +* When :option:`--version` (short form: :option:`-V`) is supplied twice, + Python prints :data:`sys.version` for detailed information. + + .. code-block:: shell-session + + $ ./python -VV + Python 3.6.0b4+ (3.6:223967b49e49+, Nov 21 2016, 20:55:04) + [GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] + Deprecated ========== |