diff options
author | Raymond Hettinger <python@rcn.com> | 2008-02-12 20:03:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-02-12 20:03:09 (GMT) |
commit | 53dbe39b46ef42aeef12c6f46f8575a794e20440 (patch) | |
tree | 99f15bb4ba51d6e88ad50f462af0ed0235b1d6d5 /Lib/test/test_file.py | |
parent | 4513ef8b7a4a684deea0dda23a760f4596a1097c (diff) | |
download | cpython-53dbe39b46ef42aeef12c6f46f8575a794e20440.zip cpython-53dbe39b46ef42aeef12c6f46f8575a794e20440.tar.gz cpython-53dbe39b46ef42aeef12c6f46f8575a794e20440.tar.bz2 |
Move UserList to collections.
Diffstat (limited to 'Lib/test/test_file.py')
-rw-r--r-- | Lib/test/test_file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py index 5da2da9..5102de3 100644 --- a/Lib/test/test_file.py +++ b/Lib/test/test_file.py @@ -5,7 +5,7 @@ from array import array from weakref import proxy from test.test_support import TESTFN, findfile, run_unittest -from UserList import UserList +from collections import UserList class AutoFileTests(unittest.TestCase): # file tests for which a test file is automatically set up |