summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 09:16:38 +0100
commit7fa767e517882f4d3503d168d3a4d4caad317752 (patch)
treecc4c73326ee706456b2c8de8530fed453e582b69 /Lib/decimal.py
parent69b1e261fc703106b44095796d78ba6aacbbdb63 (diff)
downloadcpython-git-7fa767e517882f4d3503d168d3a4d4caad317752.tar.gz
Issue #20976: pyflakes: Remove unused imports
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index 7bc1c943b5..5b984731b2 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -142,7 +142,6 @@ __version__ = '1.70' # Highest version of the spec this complies with
# See http://speleotrove.com/decimal/
__libmpdec_version__ = "2.4.0" # compatible libmpdec version
-import copy as _copy
import math as _math
import numbers as _numbers
import sys