mirror of
https://github.com/python/cpython.git
synced 2026-03-03 19:40:51 +00:00
Minor namespace clean-up.
This commit is contained in:
parent
8f6f08c5d4
commit
eb2608415e
1 changed files with 2 additions and 2 deletions
|
|
@ -134,7 +134,7 @@
|
|||
'setcontext', 'getcontext'
|
||||
]
|
||||
|
||||
import copy
|
||||
import copy as _copy
|
||||
|
||||
#Rounding
|
||||
ROUND_DOWN = 'ROUND_DOWN'
|
||||
|
|
@ -2210,7 +2210,7 @@ def __init__(self, prec=None, rounding=None,
|
|||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue