summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-10-14 11:18:46 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-10-14 11:18:46 (GMT)
commita2a53b27d3053a6efe9005804f3222d65b9ef01f (patch)
treeaff91fb8359379e9597f9fb69fff9ea910fd488c
parenta226c9100d52b3f1cefc084e9ab9b863e10655fd (diff)
downloadcpython-a2a53b27d3053a6efe9005804f3222d65b9ef01f.zip
cpython-a2a53b27d3053a6efe9005804f3222d65b9ef01f.tar.gz
cpython-a2a53b27d3053a6efe9005804f3222d65b9ef01f.tar.bz2
Add support for "-3" flag (closes #7516)
-rw-r--r--Lib/test/test_support.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index edf222d..58c8455 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -1210,6 +1210,7 @@ def args_from_interpreter_flags():
'no_user_site': 's',
'no_site': 'S',
'optimize': 'O',
+ 'py3k_warning': '3',
'verbose': 'v',
}
args = []