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
Date 2008-10-24.22:52:21
SpamBayes Score 8.3336294e-05
Marked as misclassified No
Message-id <1224888742.6.0.77067400529.issue4201@psf.upfronthosting.co.za>
In-reply-to
Content
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]
History
Date User Action Args
2008-10-24 22:52:22belopolskysetrecipients: + belopolsky
2008-10-24 22:52:22belopolskysetmessageid: <1224888742.6.0.77067400529.issue4201@psf.upfronthosting.co.za>
2008-10-24 22:52:22belopolskylinkissue4201 messages
2008-10-24 22:52:22belopolskycreate