commit | 53dbe39b46ef42aeef12c6f46f8575a794e20440 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Tue Feb 12 20:03:09 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Tue Feb 12 20:03:09 2008 +0000 |
tree | 99f15bb4ba51d6e88ad50f462af0ed0235b1d6d5 | |
parent | 4513ef8b7a4a684deea0dda23a760f4596a1097c [diff] [blame] |
Move UserList to collections.
diff --git a/Lib/test/test_richcmp.py b/Lib/test/test_richcmp.py index 3f97ece..7b6f9be 100644 --- a/Lib/test/test_richcmp.py +++ b/Lib/test/test_richcmp.py
@@ -254,7 +254,7 @@ 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)