]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport gvanrossum's checkin of
authorMichael W. Hudson <mwh@python.net>
Tue, 5 Mar 2002 13:58:42 +0000 (13:58 +0000)
committerMichael W. Hudson <mwh@python.net>
Tue, 5 Mar 2002 13:58:42 +0000 (13:58 +0000)
    revision 1.24 of copy.py

SF patch 518765 (Derek Harland): Bug in copy.py when used through
rexec.

When using a restricted environment, imports of copy will fail with an
AttributeError when trying to access types.CodeType.

Bugfix candidate (all the way back to 1.5.3, but at least 2.1.3 and
2.2.1).

Lib/copy.py

index 86fc978e71a3bf713544a27a76ccc79f1e30c1b3..cf0b1af36712203d31ce94d80798bcc360cc6fe7 100644 (file)
@@ -197,7 +197,10 @@ try:
     d[types.UnicodeType] = _deepcopy_atomic
 except AttributeError:
     pass
-d[types.CodeType] = _deepcopy_atomic
+try:
+    d[types.CodeType] = _deepcopy_atomic
+except AttributeError:
+    pass
 d[types.TypeType] = _deepcopy_atomic
 d[types.XRangeType] = _deepcopy_atomic