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 yak
Recipients yak
Date 2011-11-03.00:13:25
SpamBayes Score 0.00040878108
Marked as misclassified No
Message-id <1320279206.01.0.790300668238.issue13328@psf.upfronthosting.co.za>
In-reply-to
Content
How to reproduce:

Given a module foo.py imported using zipimport with a function bar, if we try to set a breakpoint in bar using:

> break foo.bar

pdb would take filename and lineno from the function object but would use current frame to get module globals.

linecache would return a line from current module but also store it in cache under foo's filename.
History
Date User Action Args
2011-11-03 00:13:26yaksetrecipients: + yak
2011-11-03 00:13:26yaksetmessageid: <1320279206.01.0.790300668238.issue13328@psf.upfronthosting.co.za>
2011-11-03 00:13:25yaklinkissue13328 messages
2011-11-03 00:13:25yakcreate