diff options
author | Brett Cannon <brett@python.org> | 2012-09-25 14:26:15 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-09-25 14:26:15 (GMT) |
commit | 6cf50c5b1deb7d31debe345e2d18f8402d00d1f4 (patch) | |
tree | 8b748dfd6dc4780430f5472e8c51af322e2da9da /Modules | |
parent | 63092fe0ea5779aea6c64020290863d125de7fa2 (diff) | |
download | cpython-6cf50c5b1deb7d31debe345e2d18f8402d00d1f4.zip cpython-6cf50c5b1deb7d31debe345e2d18f8402d00d1f4.tar.gz cpython-6cf50c5b1deb7d31debe345e2d18f8402d00d1f4.tar.bz2 |
Fix whitespace.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_decimal/tests/bench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_decimal/tests/bench.py b/Modules/_decimal/tests/bench.py index fef7a22..23b80b4 100644 --- a/Modules/_decimal/tests/bench.py +++ b/Modules/_decimal/tests/bench.py @@ -78,7 +78,7 @@ for prec in [9, 19]: for func in to_benchmark: start = time.time() if C is not None: - C.getcontext().prec = prec + C.getcontext().prec = prec P.getcontext().prec = prec for i in range(10000): x = func() |