From d37595cacfa11c41302e3f5f791628b7227aa11b Mon Sep 17 00:00:00 2001 From: prakashdanish Date: Fri, 5 Oct 2018 09:47:26 +0530 Subject: [PATCH] add isolated (-I) flag to sys.flags --- Doc/library/sys.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 9b10738c64e442..cd43e541f13eec 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.