This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author flox
Recipients Laurent.De.Buyst, berker.peksag, flox, kushal.das, michael.foord, nicola.palumbo
Date 2014-05-25.21:26:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401053192.24.0.758823862204.issue18622@psf.upfronthosting.co.za>
In-reply-to
Content
I've been bitten by this issue with a custom psycopg2 mock.

>>> cur = mock.Mock()
>>> 
>>> cur.connection.cursor.return_value = cur
>>> cur.reset_mock()
RuntimeError: maximum recursion depth exceeded

the patch looks ok, except the mix of tab and spaces :-)
History
Date User Action Args
2014-05-25 21:26:32floxsetrecipients: + flox, michael.foord, berker.peksag, kushal.das, nicola.palumbo, Laurent.De.Buyst
2014-05-25 21:26:32floxsetmessageid: <1401053192.24.0.758823862204.issue18622@psf.upfronthosting.co.za>
2014-05-25 21:26:32floxlinkissue18622 messages
2014-05-25 21:26:31floxcreate