diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-07-31 15:33:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 15:33:56 (GMT) |
commit | aa37ffda29ac48fb2df5a7029ba2e626ecc45850 (patch) | |
tree | 748f6ebe2d1bcc3b34cf999b15c1618a9365597b /Doc/library/sys.rst | |
parent | 50b2261bdac98303087287b24eef96abd45a82f9 (diff) | |
download | cpython-aa37ffda29ac48fb2df5a7029ba2e626ecc45850.zip cpython-aa37ffda29ac48fb2df5a7029ba2e626ecc45850.tar.gz cpython-aa37ffda29ac48fb2df5a7029ba2e626ecc45850.tar.bz2 |
bpo-45445: Revert "bpo-45445: Fail if an invalid X-option is provided in the command line (GH-28823)" (#94745)
Diffstat (limited to 'Doc/library/sys.rst')
-rw-r--r-- | Doc/library/sys.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index e7ad6a6..632ce62 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1780,13 +1780,13 @@ always available. .. code-block:: shell-session - $ ./python -Xpycache_prefix=some_path -Xdev + $ ./python -Xa=b -Xc Python 3.2a3+ (py3k, Oct 16 2010, 20:14:50) [GCC 4.4.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys._xoptions - {'pycache_prefix': 'some_path', 'dev': True} + {'a': 'b', 'c': True} .. impl-detail:: |