Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Incorrect line number calculated in traceback #93662

Closed
Assignees
markshannon
@pablogsal

Description

@pablogsal

Consider the following code:

def _run_with_file_output():    example_report_generation_message= (            """            """    ).strip()    raise ValueError()_run_with_file_output()

If you execute this with 3.11.0a7 you get (correct traceback):

Traceback (most recent call last):  File "/home/pablogsal/github/python/3.11/lel.py", line 8, in <module>    _run_with_file_output()    ^^^^^^^^^^^^^^^^^^^^^^^  File "/home/pablogsal/github/python/3.11/lel.py", line 6, in _run_with_file_output    raise ValueError()    ^^^^^^^^^^^^^^^^^^ValueError

but on 3.11.0b1 you get:

Traceback (most recent call last):  File "/home/pablogsal/github/python/3.11/lel.py", line 8, in <module>    _run_with_file_output()    ^^^^^^^^^^^^^^^^^^^^^^^  File "/home/pablogsal/github/python/3.11/lel.py", line 255, in _run_with_file_outputValueError

Notice that the last line number for_run_with_file_output is wrong (255 instead of 6).

Bisecting points at:

944fffee8916cb94321fa33cd3a43f4108717746 is the first bad commitcommit 944fffee8916cb94321fa33cd3a43f4108717746Author: Mark Shannon <mark@hotpy.org>Date:   Thu Apr 21 16:10:37 2022 +0100    GH-88116: Use a compact format to represent end line and column offsets. (GH-91666)    * Stores all location info in linetable to conform to PEP 626.    * Remove column table from code objects.    * Remove end-line table from code objects.    * Document new location table format

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp