diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:24:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-05 20:24:08 (GMT) |
commit | 7d967712b8cc35b4cc33c1a7be14ddc9baba2c97 (patch) | |
tree | 36319103faf3fab533e209281a7f4fe84f739933 /Lib/test/test_sys.py | |
parent | 90e8f8cd9b18fd18581a1ee01664f50852fe68f8 (diff) | |
download | cpython-7d967712b8cc35b4cc33c1a7be14ddc9baba2c97.zip cpython-7d967712b8cc35b4cc33c1a7be14ddc9baba2c97.tar.gz cpython-7d967712b8cc35b4cc33c1a7be14ddc9baba2c97.tar.bz2 |
Update tests and whatsnew for the 'quiet' flag
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r-- | Lib/test/test_sys.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 92b7c42..50f0e93 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -501,7 +501,7 @@ class SysModuleTest(unittest.TestCase): attrs = ("debug", "division_warning", "inspect", "interactive", "optimize", "dont_write_bytecode", "no_user_site", "no_site", "ignore_environment", "verbose", - "bytes_warning") + "bytes_warning", "quiet") for attr in attrs: self.assertTrue(hasattr(sys.flags, attr), attr) self.assertEqual(type(getattr(sys.flags, attr)), int, attr) |