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.
Created on 2007年08月27日 23:32 by gregory.p.smith, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg55342 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2007年08月27日 23:32 | |
The Lib/pdb.py debugger fails in the py3k branch. Traceback (most recent call last): File "/usr/local/gps/python/py3k/Lib/pdb.py", line 1247, in main pdb._runscript(mainpyfile) File "/usr/local/gps/python/py3k/Lib/pdb.py", line 1173, in _runscript self.run(statement) File "/usr/local/gps/python/py3k/Lib/bdb.py", line 365, in run exec(cmd, globals, locals) File "<string>", line 1 exec("# bla bla bla first line of your file being debugged ^ SyntaxError: EOL while scanning single-quoted string Uncaught exception. Entering post mortem debugging |
|||
| msg55438 - (view) | Author: Guido van Rossum (gvanrossum) * (Python committer) | Date: 2007年08月29日 20:46 | |
Why are you using _runscript(), which is an internal routine? I've had a fair amount of success with other invocations, like pdb.run(). |
|||
| msg55453 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2007年08月30日 00:59 | |
I was running it by typing "./python Lib/pdb.py Lib/test_foo.py" |
|||
| msg55869 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2007年09月12日 19:44 | |
Fixed in rev. 58127. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:26 | admin | set | github: 45379 |
| 2008年01月06日 22:29:45 | admin | set | keywords:
- py3k versions: Python 3.0 |
| 2007年09月12日 19:44:33 | georg.brandl | set | status: open -> closed assignee: georg.brandl resolution: fixed messages: + msg55869 nosy: + georg.brandl |
| 2007年08月30日 00:59:20 | gregory.p.smith | set | messages: + msg55453 |
| 2007年08月29日 20:46:40 | gvanrossum | set | nosy:
+ gvanrossum messages: + msg55438 |
| 2007年08月27日 23:32:11 | gregory.p.smith | create | |