summaryrefslogtreecommitdiff
path: root/Lib/test/string_tests.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-02-12 20:03:09 +0000
committerRaymond Hettinger <python@rcn.com>2008-02-12 20:03:09 +0000
commit46a4da76a23b7e11b58d17c0c8e55b46c286ff6c (patch)
tree4781abfefc8369cc3927ae61628a44031825156f /Lib/test/string_tests.py
parent57560eb6e5e9c457284bd770c47d8e656005b722 (diff)
downloadcpython-46a4da76a23b7e11b58d17c0c8e55b46c286ff6c.tar.gz
Move UserList to collections.
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r--Lib/test/string_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index 80fe4758c4..24fca598d7 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -4,7 +4,7 @@ Common tests shared by test_str, test_unicode, test_userstring and test_string.
import unittest, string, sys, struct
from test import test_support
-from UserList import UserList
+from collections import UserList
class Sequence:
def __init__(self, seq='wxyz'): self.seq = seq