diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-12-30 10:50:32 +0000 |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-12-30 10:50:32 +0000 |
commit | 63b482cefbb1b62d257e390b93dd94bc29c8b5fa (patch) | |
tree | 9b7051ba64e3cbdbc0370b51251f55ea4840cd01 /Lib/test/test_string.py | |
parent | Last checkin was missing the tuple comma. (diff) | |
download | cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.tar.gz cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.tar.bz2 cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.zip |
String tests should test 8-bit strings :-)
Diffstat (limited to 'Lib/test/test_string.py')
-rw-r--r-- | Lib/test/test_string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py index 6361f786f7d..e0f799028a1 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 |