commit | f80680d8cdb7503c4b34e2c5a014d7c4f6e5817d | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Wed Feb 06 00:07:11 2008 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Wed Feb 06 00:07:11 2008 +0000 |
tree | c02f8db2179cce9a87317c373dcb733d6f2134c0 | |
parent | 554c8b856cbeb29f3fef0350846aef442832acac [diff] [blame] |
Migrate remaining tests from UserDict.UserDict to collections.UserDict.
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)