summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_string.py
diff options
context:
space:
mode:
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 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