summaryrefslogtreecommitdiff
path: root/Modules/_decimal
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-12 21:56:08 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-12 21:56:08 +0200
commit61aa10b9e2401fd0637695ea6d4a87e20a8a387d (patch)
tree161a46e4cf65c3004cca58e94315f4b0b7943493 /Modules/_decimal
parent33b43fe224a6a79e6b75dfb057ed1b87d5877bbc (diff)
downloadcpython-61aa10b9e2401fd0637695ea6d4a87e20a8a387d.tar.gz
Issue #23641: Cleaned out legacy dunder names from tests and docs.
Fixed 2 to 3 porting bug in pynche.ColorDB.
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 c4c5a4461d..27137b2e49 100644
--- a/Modules/_decimal/tests/deccheck.py
+++ b/Modules/_decimal/tests/deccheck.py
@@ -126,7 +126,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'
]