[issue21863] Display module names of C functions in cProfile

2014-06-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you, committed! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue21863] Display module names of C functions in cProfile

2014-06-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6dd4c2d30b0e by Antoine Pitrou in branch 'default': Issue #21863: cProfile now displays the module name of C extension functions, in addition to their own name. http://hg.python.org/cpython/rev/6dd4c2d30b0e -- nosy: +python-dev ___

[issue21863] Display module names of C functions in cProfile

2014-06-26 Thread STINNER Victor
STINNER Victor added the comment: The patch looks good to me. I didn't test it, but I see that the change is already tested by existing tests. -- nosy: +haypo ___ Python tracker ___

[issue21863] Display module names of C functions in cProfile

2014-06-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue21863] Display module names of C functions in cProfile

2014-06-24 Thread Antoine Pitrou
New submission from Antoine Pitrou: Currently, cProfile output displays "built-in functions" (i.e. module functions implemented in C, such as hasattr()) using only their names. This is not very useful when those functions may be provided by any third-party library. Attached patch adds the modu