diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-03-30 12:59:11 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-03-30 12:59:11 (GMT) |
commit | 4ef3a23a35a391602202dce10376be9e43588fa6 (patch) | |
tree | c7310a78fc2ce187a6d79d84fa1f4d5e8afcd8f3 /Lib/test/test_decimal.py | |
parent | ecdc0a9f4609e3be57e5f8a54dac2ea8e9607aed (diff) | |
download | cpython-4ef3a23a35a391602202dce10376be9e43588fa6.zip cpython-4ef3a23a35a391602202dce10376be9e43588fa6.tar.gz cpython-4ef3a23a35a391602202dce10376be9e43588fa6.tar.bz2 |
whitespace normalisation
Diffstat (limited to 'Lib/test/test_decimal.py')
-rw-r--r-- | Lib/test/test_decimal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 29b28ef..6133b2e 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -517,7 +517,7 @@ class DecimalImplicitConstructionTest(unittest.TestCase): else: # testing with -Qnew, so add __truediv__ oplist.append(('/', '__truediv__', '__rtruediv__')) - + for sym, lop, rop in oplist: setattr(E, lop, lambda self, other: 'str' + lop + str(other)) setattr(E, rop, lambda self, other: str(other) + rop + 'str') |