summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDanish Prakash <grafitykoncept@gmail.com>2018-10-07 16:12:31 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-10-07 16:12:31 (GMT)
commit656d52dbfde3223cd2a3525d652b6cccb02fa991 (patch)
tree2dc61b05ff3f4ac50c8b5c7aacb4de42be14e714 /Doc
parent7dfbd4967121ef6ecabe3fd53a430fd949f405fd (diff)
downloadcpython-656d52dbfde3223cd2a3525d652b6cccb02fa991.zip
cpython-656d52dbfde3223cd2a3525d652b6cccb02fa991.tar.gz
cpython-656d52dbfde3223cd2a3525d652b6cccb02fa991.tar.bz2
bpo-34901: add isolated (-I) flag to sys.flags (GH-9708)
https://bugs.python.org/issue34901
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/sys.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 9b10738..cd43e54 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -345,6 +345,7 @@ always available.
:const:`debug` :option:`-d`
:const:`inspect` :option:`-i`
:const:`interactive` :option:`-i`
+ :const:`isolated` :option:`-I`
:const:`optimize` :option:`-O` or :option:`-OO`
:const:`dont_write_bytecode` :option:`-B`
:const:`no_user_site` :option:`-s`
@@ -367,6 +368,9 @@ always available.
.. versionchanged:: 3.3
Removed obsolete ``division_warning`` attribute.
+ .. versionchanged:: 3.4
+ Added ``isolated`` attribute for :option:`-I` ``isolated`` flag.
+
.. versionchanged:: 3.7
Added ``dev_mode`` attribute for the new :option:`-X` ``dev`` flag
and ``utf8_mode`` attribute for the new :option:`-X` ``utf8`` flag.