commit | dcc6d32ee4b9e7517da2af4975dbd273b8cf556b | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Fri Apr 21 11:30:52 2006 +0000 |
committer | Thomas Wouters <thomas@python.org> | Fri Apr 21 11:30:52 2006 +0000 |
tree | 0e45174da07b52f10ff3d1a31ed99ed02e56cced | |
parent | 3fc2ca3884bec42d9b68336183bb07a83311ea56 [diff] [blame] |
Fix merge glitch.
diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 341ad6d..40c4466 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py
@@ -511,7 +511,7 @@ ('+', '__add__', '__radd__'), ('-', '__sub__', '__rsub__'), ('*', '__mul__', '__rmul__'), - ('/', '__truediv__', '__rtruediv__') + ('/', '__truediv__', '__rtruediv__'), ('%', '__mod__', '__rmod__'), ('//', '__floordiv__', '__rfloordiv__'), ('**', '__pow__', '__rpow__')