Alexander Belopolsky <belopol...@users.sourceforge.net> added the comment:

This is clearly an artifact of porting to 3.x.  In 2.x the code was


            calls = self.calledfuncs.keys()
            calls.sort()
            for filename, modulename, funcname in calls:

which was translated to

           for filename, modulename, funcname in sorted(calls.keys()):

missing the calls assignment.  I am going to commit this patch.

----------
assignee:  -> belopolsky
nosy: +belopolsky
resolution:  -> accepted
superseder:  -> The trace module lacks unit tests

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9282>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to