summaryrefslogtreecommitdiffstats
path: root/Lib/test/string_tests.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-10 05:46:29 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-10 05:46:29 (GMT)
commit5b1acc0dff9b242cc6e5f7c7aa1a19f361f98004 (patch)
tree780c90cc38575904d739069ad11c3b04db4b756c /Lib/test/string_tests.py
parent47b988609f5669ed2788a3c5c6004b13a3c2cff0 (diff)
parent0dceb560b6b7bfc0a2e11d3a6c27f0a7c7e2e619 (diff)
downloadcpython-5b1acc0dff9b242cc6e5f7c7aa1a19f361f98004.zip
cpython-5b1acc0dff9b242cc6e5f7c7aa1a19f361f98004.tar.gz
cpython-5b1acc0dff9b242cc6e5f7c7aa1a19f361f98004.tar.bz2
#16910: merge with 3.3.
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 e4688d0..27e4662 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -19,7 +19,7 @@ class BadSeq2(Sequence):
def __init__(self): self.seq = ['a', 'b', 'c']
def __len__(self): return 8
-class BaseTest(unittest.TestCase):
+class BaseTest:
# These tests are for buffers of values (bytes) and not
# specific to character interpretation, used for bytes objects
# and various string implementations