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 pstch
Recipients The Compiler, cjw296, michael.foord, ncoghlan, pstch, yselivanov
Date 2016-08-22.04:40:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471840838.98.0.167349237412.issue25532@psf.upfronthosting.co.za>
In-reply-to
Content
Another argument for having the fix in `unwrap` rather than `signature` is that this bug does not actually seem to be called by `signature`, as the doctest module calls `unwrap` for "inspect.isroutine(inspect.unwrap(val))".

Also, this call does not even check for `ValueError`, which, if I'm not wrong, is something that should be corrected.

Maybe `unwrap` could be made recursive to make it respect recursion limits directly ? Otherwise, limiting the loop seems like a good idea.

(Temporarily, `from mock import call; call.__wrapped__ = None` seems to be a good workaround to prevent infinite memory allocation).
History
Date User Action Args
2016-08-22 04:40:39pstchsetrecipients: + pstch, ncoghlan, cjw296, michael.foord, yselivanov, The Compiler
2016-08-22 04:40:38pstchsetmessageid: <1471840838.98.0.167349237412.issue25532@psf.upfronthosting.co.za>
2016-08-22 04:40:38pstchlinkissue25532 messages
2016-08-22 04:40:38pstchcreate