[issue37287] picke cannot dump Exception subclasses with different super() args
Change by Fabian Raab : -- nosy: +raabf ___ Python tracker <https://bugs.python.org/issue37287> ___ ___ Python-bugs-list mailing list Unsubscribe:
[issue37287] picke cannot dump Exception subclasses with different super() args
Fabian Raab added the comment: It seems to that this problem is affecting __new__ methods independent of exceptions: >>> class NewBreaker: ... def __new__(cls, arg): ... return super().__new__(cls) ... >>> nb = NewBreaker(42) >>> import pickle &