summaryrefslogtreecommitdiff
path: root/Modules/_decimal
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-12 22:01:30 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-12 22:01:30 +0200
commitb78a001c09af422c3c02874329affc575d026c18 (patch)
treee4f6bdb837a49a3756bb1426fa11430dc7667929 /Modules/_decimal
parent6b2b8a682f52c9ad192bafae3a14439492efc0fc (diff)
parent61aa10b9e2401fd0637695ea6d4a87e20a8a387d (diff)
downloadcpython-b78a001c09af422c3c02874329affc575d026c18.tar.gz
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__.
Diffstat (limited to 'Modules/_decimal')
-rw-r--r--Modules/_decimal/tests/deccheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_decimal/tests/deccheck.py b/Modules/_decimal/tests/deccheck.py
index 89433c083d..ab7d5bdf4e 100644
--- a/Modules/_decimal/tests/deccheck.py
+++ b/Modules/_decimal/tests/deccheck.py
@@ -127,7 +127,7 @@ ContextFunctions = {
# Functions that require a restricted exponent range for reasonable runtimes.
UnaryRestricted = [
- '__ceil__', '__floor__', '__int__', '__long__', '__trunc__',
+ '__ceil__', '__floor__', '__int__', '__trunc__',
'to_integral', 'to_integral_value'
]