[issue4201] Pdb cannot access source code in zipped packages.

2008-12-14 Thread Nick Coghlan
Nick Coghlan added the comment: Final revisions for fix: 2.7 = r67751 (there was a new test file missing from the initial checkin) 2.6 = r67752 3.1 = r67753 3.0 = r67754 -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-14 Thread Nick Coghlan
Nick Coghlan added the comment: Fixed for 2.7 in r67750. Will be ported to 2.6, 3.0 and 3.1. ___ Python tracker ___ ___ Python-bugs-list maili

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-10 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: The patch hasn't been accepted for the trunk, yet, so it is out of scope for 2.5.3. Retargetting. -- nosy: +loewis versions: +Python 2.7 -Python 2.5.3 ___ Python tracker <[EMAIL PROTECTED]>

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-04 Thread Nick Coghlan
Nick Coghlan <[EMAIL PROTECTED]> added the comment: Issues with the tracker itself go in the meta tracker (see the "Report Tracker Problem" link at the bottom of the left hand navigation menu). It's a separate tracker in order to handle cases where the main tracker is actually down in addition to

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-03 Thread Alexander Belopolsky
Alexander Belopolsky <[EMAIL PROTECTED]> added the comment: Off-topic: How to report a bug tracker bug? The e-mail I sent in response to Nick's post started with: """ On Wed, Dec 3, 2008 at 3:51 PM, Nick Coghlan <[EMAIL PROTECTED]> wrote: > Just to confirm - this is specific to __main__.py rig

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-03 Thread Alexander Belopolsky
Alexander Belopolsky <[EMAIL PROTECTED]> added the comment: No, I only used __main__.py to make it easy to reproduce the problem. Pdb will not be able to access code in any module with a custom __loader__. For example, if you move f() to foo.py inside test.zip and import it from __main__, you wi

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-03 Thread Nick Coghlan
Nick Coghlan <[EMAIL PROTECTED]> added the comment: Just to confirm - this is specific to __main__.py right? The problem is actually with runpy not being able to set __file__ correctly, rather than being pdb specific. ___ Python tracker <[EMAIL PROTECTED]>

[issue4201] Pdb cannot access source code in zipped packages.

2008-12-03 Thread Nick Coghlan
Changes by Nick Coghlan <[EMAIL PROTECTED]>: -- assignee: -> ncoghlan nosy: +ncoghlan ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Py

[issue4201] Pdb cannot access source code in zipped packages.

2008-10-24 Thread Alexander Belopolsky
Changes by Alexander Belopolsky <[EMAIL PROTECTED]>: -- components: +Library (Lib) type: -> behavior versions: +Python 2.5.3 ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue4201] Pdb cannot access source code in zipped packages.

2008-10-24 Thread Alexander Belopolsky
Changes by Alexander Belopolsky <[EMAIL PROTECTED]>: -- keywords: +patch Added file: http://bugs.python.org/file11883/pdb.patch ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue4201] Pdb cannot access source code in zipped packages.

2008-10-24 Thread Alexander Belopolsky
New submission from Alexander Belopolsky <[EMAIL PROTECTED]>: With attached test.zip and svn revision 67006, $ ./python.exe test.zip > /Users/sasha/Work/python-svn/trunk/test.zip/__main__.py(2)f() (Pdb) l [EOF] With pdb.patch: $ ./python.exe test.zip > /Users/sasha/Work/python-svn/trunk/test