diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-04-13 01:05:59 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-04-13 01:05:59 (GMT) |
commit | c161df6abd77ffc39c8686b7a7117c57f056b489 (patch) | |
tree | 6832a0a25ebac3b01d195e990fda91d00e526ffd | |
parent | 76ca13ca2a5dfbd74d590a6862e1b52cc1e0d6b0 (diff) | |
download | cpython-c161df6abd77ffc39c8686b7a7117c57f056b489.zip cpython-c161df6abd77ffc39c8686b7a7117c57f056b489.tar.gz cpython-c161df6abd77ffc39c8686b7a7117c57f056b489.tar.bz2 |
Mention -J, -X
-rw-r--r-- | Doc/whatsnew/2.6.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 1e11f13..bed9bbb 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -1383,6 +1383,20 @@ benchmark around XX% faster than Python 2.5. .. ====================================================================== +.. _interactive: + +Interactive Interpreter Changes +------------------------------- + +Two command-line options have been reserved for use by other Python +implementations. The :option:`-J` switch has been reserved for use by +Jython for Jython-specific options, such as ones that are passed to +the underlying JVM. :option:`-X` has been reserved for options +specific to a particular implementation of Python such as CPython, +Jython, or IronPython. If either option is used with Python 2.6, the +interpreter will report that the option isn't currently used. + +.. ====================================================================== New, Improved, and Deprecated Modules ===================================== |