homepage

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 jjdominguezm
Recipients jjdominguezm
Date 2008年09月09日.16:07:11
SpamBayes Score 5.676453e-10
Marked as misclassified No
Message-id <1220976433.09.0.355914664139.issue3821@psf.upfronthosting.co.za>
In-reply-to
Content
I get the following exception:
$ /opt/python3.0b2/bin/python3.0 -m trace -c -m run.py
Traceback (most recent call last):
 File "/opt/python3.0b2/lib/python3.0/runpy.py", line 121, in
_run_module_as_main
 "__main__", fname, loader, pkg_name)
 File "/opt/python3.0b2/lib/python3.0/runpy.py", line 34, in _run_code
 exec(code, run_globals)
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 809, in <module>
 main()
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 806, in main
 results.write_results(missing, summary=summary, coverdir=coverdir)
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 303, in write_results
 lnotab = find_executable_linenos(filename)
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 428, in
find_executable_linenos
 return find_lines(code, strs)
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 392, in find_lines
 linenos.update(find_lines(c, strs))
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 386, in find_lines
 linenos = find_lines_from_code(code, strs)
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 370, in
find_lines_from_code
 line_increments = [ord(c) for c in code.co_lnotab[1::2]]
 File "/opt/python3.0b2/lib/python3.0/trace.py", line 370, in <listcomp>
 line_increments = [ord(c) for c in code.co_lnotab[1::2]]
TypeError: ord() expected string of length 1, but int found
I think that line 370 of trace.py should say:
line_increments = [int(c) for c in code.co_lnotab[1::2]]
instead of:
line_increments = [ord(c) for c in code.co_lnotab[1::2]]
History
Date User Action Args
2008年09月09日 16:07:13jjdominguezmsetrecipients: + jjdominguezm
2008年09月09日 16:07:13jjdominguezmsetmessageid: <1220976433.09.0.355914664139.issue3821@psf.upfronthosting.co.za>
2008年09月09日 16:07:12jjdominguezmlinkissue3821 messages
2008年09月09日 16:07:12jjdominguezmcreate

AltStyle によって変換されたページ (->オリジナル) /