Change by David Mandelberg :
--
nosy: +dseomn
___
Python tracker
<https://bugs.python.org/issue44309>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from David Mandelberg :
The code below seems to have infinite recursion in the mock.seal call with
python 3.9.2.
from unittest import mock
class Foo:
foo = 0
foo = mock.create_autospec(Foo)
mock.seal(foo)
--
components: Library (Lib)
messages: 401525
nosy: dseomn
Change by David Mandelberg :
--
nosy: +dseomn
___
Python tracker
<https://bugs.python.org/issue24959>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from David Mandelberg :
The traceback in the output of the attached test (see below) doesn't include
line 5, which is where the original exception is raised. I think this is
because
https://github.com/python/cpython/blob/b9ee4af4c643a323779fd7076e80b29d611f2709/Lib/uni