Re: pickler.py issue with nested classes

2019-04-16 Thread Udi Meiri
Not sure: my case is using a nested class and the error is a stack overflow (or infinite recursion detection is triggered). It is odd though that they have the same workaround. smime.p7s Description: S/MIME Cryptographic Signature

Re: pickler.py issue with nested classes

2019-04-16 Thread Valentyn Tymofieiev
This looks very similar to https://github.com/uqfoundation/dill/issues/300, however we observed that bug on Python 3, and not on Python 2.7. On Tue, Apr 16, 2019 at 10:58 AM Udi Meiri wrote: > I was looking at migrating unit tests to pytest and found this test which > doesn't pass: >

pickler.py issue with nested classes

2019-04-16 Thread Udi Meiri
I was looking at migrating unit tests to pytest and found this test which doesn't pass: https://gist.github.com/udim/a71fcb278b56a9a5b7962f4588e14efb (stack overflow) (requires installing python3.7 and "python3.7 -m pip install pytest".) The same command passes with python2.7 and python3.5. I