diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-12 20:03:09 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-12 20:03:09 +0000 |
commit | 53dbe39b46ef42aeef12c6f46f8575a794e20440 (patch) | |
tree | 99f15bb4ba51d6e88ad50f462af0ed0235b1d6d5 /Lib/test/test_extcall.py | |
parent | 4513ef8b7a4a684deea0dda23a760f4596a1097c (diff) | |
download | cpython-git-53dbe39b46ef42aeef12c6f46f8575a794e20440.tar.gz |
Move UserList to collections.
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 2dc87b9d05..596a3ef87f 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) |