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_bisect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_bisect.py') diff --git a/Lib/test/test_bisect.py b/Lib/test/test_bisect.py index 95eafbe06b..dc18a0eb59 100644 --- a/Lib/test/test_bisect.py +++ b/Lib/test/test_bisect.py @@ -1,7 +1,7 @@ import unittest from test import test_support from bisect import bisect_right, bisect_left, insort_left, insort_right, insort, bisect -from UserList import UserList +from collections import UserList class TestBisect(unittest.TestCase): -- cgit v1.2.1