Minor namespace clean-up.
diff --git a/Lib/decimal.py b/Lib/decimal.py
index e3e7fd5..4a91c55 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -134,7 +134,7 @@
'setcontext', 'getcontext'
]
-import copy
+import copy as _copy
#Rounding
ROUND_DOWN = 'ROUND_DOWN'
@@ -2210,7 +2210,7 @@
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