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_extcall.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Lib/test/test_extcall.py') diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 2dc87b9d059..596a3ef87f4 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -1,6 +1,5 @@ from test.test_support import verify, verbose, TestFailed, sortdict -from UserList import UserList -from collections import UserDict +from collections import UserDict, UserList def e(a, b): print(a, b) -- cgit v1.2.3