diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-12-30 10:50:32 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-12-30 10:50:32 (GMT) |
commit | 63b482cefbb1b62d257e390b93dd94bc29c8b5fa (patch) | |
tree | 9b7051ba64e3cbdbc0370b51251f55ea4840cd01 | |
parent | e401b6fc55e0b2341b5e0f7dfe9bbd33c7b9f622 (diff) | |
download | cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.zip cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.tar.gz cpython-63b482cefbb1b62d257e390b93dd94bc29c8b5fa.tar.bz2 |
String tests should test 8-bit strings :-)
-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 6361f78..e0f7990 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 |