Fixed in 0b78a15
QUERY · ISSUE
deepcopy function references a non-existant variable
In copy.py: https://github.com/micropython/micropython-lib/blob/f20d89c6aad9443a696561ca2a01f7ef0c8fb302/copy/copy.py#L163 the deepcopy function references the variable dispatch_table, which isn't initialized.
CANDIDATE · PULL REQUEST
copy: Add stub dispatch_table for use in copy().
copy() depends on dispatch_table which was previously / cpython imported from copyreg module.
Without this module the attribute is not available when copy() function tries to check it.
1 comment
SO? The issue is still present, and it's really unpleasant
I just reported this on pfalcon's repository which is the "official" source of this repository.
https://github.com/pfalcon/micropython-lib/issues/26