From 53dbe39b46ef42aeef12c6f46f8575a794e20440 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 12 Feb 2008 20:03:09 +0000 Subject: Move UserList to collections. --- Lib/test/test_richcmp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_richcmp.py') diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py index 3f97ece49b..7b6f9be254 100644 --- a/Lib/test/test_richcmp.py +++ b/Lib/test/test_richcmp.py @@ -254,7 +254,7 @@ class MiscTest(unittest.TestCase): def test_recursion(self): # Check that comparison for recursive objects fails gracefully - from UserList import UserList + from collections import UserList a = UserList() b = UserList() a.append(b) -- cgit v1.2.1