summaryrefslogtreecommitdiff
path: root/Lib/test/test_string.py
diff options
context:
space:
mode:
authorMarc-André Lemburg <mal@egenix.com>2002-12-30 10:50:32 +0000
committerMarc-André Lemburg <mal@egenix.com>2002-12-30 10:50:32 +0000
commit63b482cefbb1b62d257e390b93dd94bc29c8b5fa (patch)
tree9b7051ba64e3cbdbc0370b51251f55ea4840cd01 /Lib/test/test_string.py
parente401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622 (diff)
downloadcpython-git-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.tar.gz
String tests should test 8-bit strings :-)
Diffstat (limited to 'Lib/test/test_string.py')
-rw-r--r--Lib/test/test_string.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py
index 6361f786f7..e0f799028a 100644
--- a/Lib/test/test_string.py
+++ b/Lib/test/test_string.py
@@ -60,7 +60,7 @@ string.uppercase
# Float formatting
for prec in range(100):
- formatstring = u'%%.%if' % prec
+ formatstring = '%%.%if' % prec
value = 0.01
for x in range(60):
value = value * 3.141592655 / 3.0 * 10.0