diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-04-16 15:02:23 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-04-16 15:02:23 -0700 |
commit | fa3df378eb471ec1d3207516edd25b4790fe22ee (patch) | |
tree | cfef2ffccc09e813ce701b40ff5e7acbb9933af6 | |
parent | 52fdbac919f35a276a2924a1dfe8b71c2b497db2 (diff) | |
download | cpython-fa3df378eb471ec1d3207516edd25b4790fe22ee.tar.gz |
test_support -> support
-rw-r--r-- | Lib/test/test_slice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_slice.py b/Lib/test/test_slice.py index 5e76655ee6..4ae4142c60 100644 --- a/Lib/test/test_slice.py +++ b/Lib/test/test_slice.py @@ -248,7 +248,7 @@ class SliceTest(unittest.TestCase): o.s = slice(o) w = weakref.ref(o) o = None - test_support.gc_collect() + support.gc_collect() self.assertIsNone(w()) if __name__ == "__main__": |