Zachary Ware <zachary.w...@gmail.com> added the comment:

Actually, looking into the implementation a bit, I can say there is definitely 
no bug here.  Line 153 basically works out to `y = x.__deepcopy__(memo)`, which 
is how the `__deepcopy__` method is documented[1] to be called.  Calling 
`copier(x)` instead would cause serious problems when a well-behaved 
`__deepcopy__` method then tries to call `deepcopy(self.some_attribute, memo)`.

As such, I'm closing this issue as "not a bug".

[1] https://docs.python.org/3/library/copy.html (see the last paragraph)

----------
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44248>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to