diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-02-02 19:22:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-02-02 19:22:13 (GMT) |
commit | f5f9c13551ca6c4594e69981e162198ae73f3a1d (patch) | |
tree | 39bdba40949768cd01ab4fa1e0ce48ef6164eef5 /Lib/test/test_sys.py | |
parent | 3356a2e2f03f52c4e53b9a950143872338e72334 (diff) | |
download | cpython-f5f9c13551ca6c4594e69981e162198ae73f3a1d.zip cpython-f5f9c13551ca6c4594e69981e162198ae73f3a1d.tar.gz cpython-f5f9c13551ca6c4594e69981e162198ae73f3a1d.tar.bz2 |
adjust for py3k module renaming
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 f86c7c1..2f66eb7 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -539,7 +539,7 @@ class SysModuleTest(unittest.TestCase): test.support.get_attribute(sys, "getwindowsversion") self.assert_raise_on_new_sys_type(sys.getwindowsversion()) - @test.test_support.cpython_only + @test.support.cpython_only def test_clear_type_cache(self): sys._clear_type_cache() |