summaryrefslogtreecommitdiff
path: root/Lib/test/string_tests.py
diff options
context:
space:
mode:
authorMichael W. Hudson <mwh@python.net>2002-05-20 14:48:16 +0000
committerMichael W. Hudson <mwh@python.net>2002-05-20 14:48:16 +0000
commitcad1002845fc524060695ddc8c2fd305a98323a2 (patch)
tree0b88c6044239bca90d944911d426f9e214f1bdd8 /Lib/test/string_tests.py
parentacb4f5a56bbbbb4bdf56c24197e1435a6954ea22 (diff)
downloadcpython-cad1002845fc524060695ddc8c2fd305a98323a2.tar.gz
More --disable-unicode stuff.
I'm getting better at vi!
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r--Lib/test/string_tests.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index 4185b9b151..334a6b971b 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -176,10 +176,15 @@ def run_method_tests(test):
test('strip', 'hello', 'hello', 'xyz')
# strip/lstrip/rstrip with unicode arg
- test('strip', 'xyzzyhelloxyzzy', u'hello', u'xyz')
- test('lstrip', 'xyzzyhelloxyzzy', u'helloxyzzy', u'xyz')
- test('rstrip', 'xyzzyhelloxyzzy', u'xyzzyhello', u'xyz')
- test('strip', 'hello', u'hello', u'xyz')
+ if have_unicode:
+ test('strip', 'xyzzyhelloxyzzy',
+ unicode('hello', 'ascii'), unicode('xyz', 'ascii'))
+ test('lstrip', 'xyzzyhelloxyzzy',
+ unicode('helloxyzzy', 'ascii'), unicode('xyz', 'ascii'))
+ test('rstrip', 'xyzzyhelloxyzzy',
+ unicode('xyzzyhello', 'ascii'), unicode('xyz', 'ascii'))
+ test('strip', 'hello',
+ unicode('hello', 'ascii'), unicode('xyz', 'ascii'))
test('swapcase', 'HeLLo cOmpUteRs', 'hEllO CoMPuTErS')
test('translate', 'xyzabcdef', 'xyzxyz', transtable, 'def')