summaryrefslogtreecommitdiff
path: root/Lib/copy.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-02 19:09:54 +0000
committerGuido van Rossum <guido@python.org>2007-05-02 19:09:54 +0000
commitb073f81ebad8246da83b7c7aef0031e86ad228ef (patch)
tree65721adc3d7eb83905fae992a9252af31bb0b702 /Lib/copy.py
parented9f1907286ed2cb9109ccb72f318ea249e6c295 (diff)
downloadcpython-b073f81ebad8246da83b7c7aef0031e86ad228ef.tar.gz
Rip out all the u"..." literals and calls to unicode().
Diffstat (limited to 'Lib/copy.py')
-rw-r--r--Lib/copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index e47f03e1ee..fae57c2724 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -186,7 +186,7 @@ except NameError:
pass
d[str] = _deepcopy_atomic
try:
- d[unicode] = _deepcopy_atomic
+ d[str] = _deepcopy_atomic
except NameError:
pass
try: