diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-01-15 01:29:16 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-01-15 01:29:16 (GMT) |
commit | 7ce9b184603330386bf29ba21b56cf846616c217 (patch) | |
tree | 88ce75609b271ab2fcd5b9d751fbc15eea7b5898 /Lib | |
parent | 351e1a3e8805bca158d1f116a637e787e2b70f18 (diff) | |
download | cpython-7ce9b184603330386bf29ba21b56cf846616c217.zip cpython-7ce9b184603330386bf29ba21b56cf846616c217.tar.gz cpython-7ce9b184603330386bf29ba21b56cf846616c217.tar.bz2 |
Typo fixes
Diffstat (limited to 'Lib')
-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 1b9b9d0..aafbfa3 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -356,7 +356,7 @@ class SysModuleTest(unittest.TestCase): self.failUnless(sys.flags) attrs = ("debug", "py3k_warning", "division_warning", "division_new", "inspect", "interactive", "optimize", "dont_write_bytecode", - "no_site", "ingnore_environment", "tabcheck", "verbose", + "no_site", "ignore_environment", "tabcheck", "verbose", "unicode") for attr in attrs: self.assert_(hasattr(sys.flags, attr), attr) |