[issue37287] picke cannot dump Exception subclasses with different super() args

2019-07-26 Thread Fabian Raab
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 >>> dumped = pickle.dumps(nb) >>>

[issue37287] picke cannot dump Exception subclasses with different super() args

2019-06-28 Thread Fabian Raab
Change by Fabian Raab : -- nosy: +raabf ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue37287] picke cannot dump Exception subclasses with different super() args

2019-06-17 Thread Gregory P. Smith
Gregory P. Smith added the comment: possibly related to https://bugs.python.org/issue32696 and https://bugs.python.org/issue1692335. -- nosy: +gregory.p.smith ___ Python tracker

[issue37287] picke cannot dump Exception subclasses with different super() args

2019-06-14 Thread Brian Quinlan
Change by Brian Quinlan : -- title: picke cannot dump exceptions subclasses with different super() args -> picke cannot dump Exception subclasses with different super() args ___ Python tracker __