[Python-checkins] cpython (3.5): test_support -> support

benjamin.peterson python-checkins at python.org
Sat Apr 16 18:02:34 EDT 2016


https://hg.python.org/cpython/rev/7b460808a407
changeset:   101023:7b460808a407
branch:      3.5
parent:      101021:9e2176d18965
user:        Benjamin Peterson <benjamin at python.org>
date:        Sat Apr 16 15:02:23 2016 -0700
summary:
  test_support -> support

files:
  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
--- a/Lib/test/test_slice.py
+++ b/Lib/test/test_slice.py
@@ -248,7 +248,7 @@
         o.s = slice(o)
         w = weakref.ref(o)
         o = None
-        test_support.gc_collect()
+        support.gc_collect()
         self.assertIsNone(w())
 
 if __name__ == "__main__":

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list