From 63b482cefbb1b62d257e390b93dd94bc29c8b5fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Mon, 30 Dec 2002 10:50:32 +0000 Subject: String tests should test 8-bit strings :-) --- Lib/test/test_string.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12