diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-02-02 19:06:11 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-02-02 19:06:11 (GMT) |
commit | 77a57c7570fa77ea7ccac72286369b56df8509da (patch) | |
tree | 4f80424a4744e750ab07967537e9d2ad40c66500 | |
parent | dda9121ad1108d625d546548df787083a0f7a5b5 (diff) | |
download | cpython-77a57c7570fa77ea7ccac72286369b56df8509da.zip cpython-77a57c7570fa77ea7ccac72286369b56df8509da.tar.gz cpython-77a57c7570fa77ea7ccac72286369b56df8509da.tar.bz2 |
_clear_type_cache is cpython-only
-rw-r--r-- | Lib/test/test_sys.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 1e1bdbe..ab35ba4 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -425,6 +425,7 @@ class SysModuleTest(unittest.TestCase): self.assertEqual(type(getattr(sys.flags, attr)), int, attr) self.assertTrue(repr(sys.flags)) + @test.test_support.cpython_only def test_clear_type_cache(self): sys._clear_type_cache() |