summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2005-06-07 18:52:34 +0000
committerRaymond Hettinger <python@rcn.com>2005-06-07 18:52:34 +0000
commitfa081931bf1a1a466cf2a2a6e108eb71c23957e5 (patch)
treeb2341a0e19529a393ce8befeb83a994034aa5d09 /Lib/decimal.py
parent94acdc1198781eec5214390c65bd4d29426d8a54 (diff)
downloadcpython-fa081931bf1a1a466cf2a2a6e108eb71c23957e5.tar.gz
Minor namespace clean-up.
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index e3e7fd5c11..4a91c55402 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -134,7 +134,7 @@ __all__ = [
'setcontext', 'getcontext'
]
-import copy
+import copy as _copy
#Rounding
ROUND_DOWN = 'ROUND_DOWN'
@@ -2210,7 +2210,7 @@ class Context(object):
del s
for name, val in locals().items():
if val is None:
- setattr(self, name, copy.copy(getattr(DefaultContext, name)))
+ setattr(self, name, _copy.copy(getattr(DefaultContext, name)))
else:
setattr(self, name, val)
del self.self