From da7d7d0ccc2e7cab62080e146cab027f2aa6fd03 Mon Sep 17 00:00:00 2001 From: danishprakash Date: Mon, 22 Oct 2018 21:48:34 +0000 Subject: [PATCH] [3.6] bpo-34901: add -I flag to sys.flags (GH-9755) --- Doc/library/sys.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 68521df37ebb..f419c4501e0a 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -286,6 +286,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` @@ -306,6 +307,8 @@ always available. .. versionchanged:: 3.3 Removed obsolete ``division_warning`` attribute. + .. versionchanged:: 3.4 + Added ``isolated`` attribute for :option:`-I` ``isolated`` flag. .. data:: float_info -- 2.47.3