Skip to content

Commit 0b78a15

Browse files
Josverldpgeorge
authored andcommitted
copy: Fix typo in _deepcopy_dispatch.
Fixes issue micropython#952. Signed-off-by: Jos Verlinde <[email protected]>
1 parent 7b01b50 commit 0b78a15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python-stdlib/copy/copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def deepcopy(x, memo=None, _nil=[]):
191191
if copier:
192192
y = copier(memo)
193193
else:
194-
reductor = dispatch_table.get(cls)
194+
reductor = _deepcopy_dispatch.get(cls)
195195
if reductor:
196196
rv = reductor(x)
197197
else:

python-stdlib/copy/manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
metadata(version="3.3.4")
1+
metadata(version="3.3.5")
22

33
require("types")
44

0 commit comments

Comments
 (0)