summaryrefslogtreecommitdiffstats
path: root/Lib/test/string_tests.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-09-13 02:28:18 (GMT)
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-09-13 02:28:18 (GMT)
commita87b383ac132da0116dac2d8bd8bb3c3359b54b3 (patch)
treea7dcca741b519512903318409884f1e2ddba0b6b /Lib/test/string_tests.py
parent0f4dd9a8e565be5c6ce4adeb2429071d06b2d5db (diff)
downloadcpython-a87b383ac132da0116dac2d8bd8bb3c3359b54b3.zip
cpython-a87b383ac132da0116dac2d8bd8bb3c3359b54b3.tar.gz
cpython-a87b383ac132da0116dac2d8bd8bb3c3359b54b3.tar.bz2
Reenable test_ucs4 and remove some duplicated lines.
Diffstat (limited to 'Lib/test/string_tests.py')
-rw-r--r--Lib/test/string_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/string_tests.py b/Lib/test/string_tests.py
index d81b153..4c6515b 100644
--- a/Lib/test/string_tests.py
+++ b/Lib/test/string_tests.py
@@ -1131,7 +1131,7 @@ class MixinStrUnicodeUserStringTest:
format = '%%.%if' % prec
value = 0.01
for x in range(60):
- value = value * 3.141592655 / 3.0 * 10.0
+ value = value * 3.14159265359 / 3.0 * 10.0
self.checkcall(format, "__mod__", value)
def test_inplace_rewrites(self):