diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-06 00:07:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-06 00:07:11 (GMT) |
commit | f80680d8cdb7503c4b34e2c5a014d7c4f6e5817d (patch) | |
tree | c02f8db2179cce9a87317c373dcb733d6f2134c0 /Lib/test/test_extcall.py | |
parent | 554c8b856cbeb29f3fef0350846aef442832acac (diff) | |
download | cpython-f80680d8cdb7503c4b34e2c5a014d7c4f6e5817d.zip cpython-f80680d8cdb7503c4b34e2c5a014d7c4f6e5817d.tar.gz cpython-f80680d8cdb7503c4b34e2c5a014d7c4f6e5817d.tar.bz2 |
Migrate remaining tests from UserDict.UserDict to collections.UserDict.
Diffstat (limited to 'Lib/test/test_extcall.py')
-rw-r--r-- | Lib/test/test_extcall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index 611f4ab..2dc87b9 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -1,6 +1,6 @@ from test.test_support import verify, verbose, TestFailed, sortdict from UserList import UserList -from UserDict import UserDict +from collections import UserDict def e(a, b): print(a, b) |