Skip to content

Commit 9788109

Browse files
committed
python-stdlib/copy/copy: Fix typo in _deepcopy_dispatch.
closes: micropython#952 Signed-off-by: Jos Verlinde <Jos_Verlinde@hotmail.com>
1 parent 6b7bc90 commit 9788109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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:

0 commit comments

Comments
 (0)