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 belopolsky
Recipients belopolsky, eli.bendersky, terry.reedy
Date 2010-07-20.19:38:04
SpamBayes Score 0.002437338
Marked as misclassified No
Message-id <1279654686.27.0.430486051653.issue9282@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2010-07-20 19:38:06belopolskysetrecipients: + belopolsky, terry.reedy, eli.bendersky
2010-07-20 19:38:06belopolskysetmessageid: <1279654686.27.0.430486051653.issue9282@psf.upfronthosting.co.za>
2010-07-20 19:38:04belopolskylinkissue9282 messages
2010-07-20 19:38:04belopolskycreate