[New-bugs-announce] [issue4201] Pdb cannot access source code in zipped packages.

Alexander Belopolsky report at bugs.python.org
Sat Oct 25 00:52:22 CEST 2008


New submission from Alexander Belopolsky <belopolsky at users.sourceforge.net>:

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.zip/__main__.py(2)f()
-> pass
(Pdb) l
  1  	def f():
  2  ->	    pass
  3  	
  4  	import pdb
  5  	pdb.runcall(f)
  6  	
  7  	                                
[EOF]

----------
files: test.zip
messages: 75197
nosy: belopolsky
severity: normal
status: open
title: Pdb cannot access source code in zipped packages.
Added file: http://bugs.python.org/file11882/test.zip

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4201>
_______________________________________


More information about the New-bugs-announce mailing list