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

Appearance settings

pdb debugger command <ll> (longlist shows wrong current line in python versions 3.10, 3.11 #104207

Copy link
Copy link
@Th1sUs3rH4sN0N4m3

Description

@Th1sUs3rH4sN0N4m3
Issue body actions

In python version 3.10 and 3.11 pdb debugger has a bug. If you run python3.11 -m pdb ./your_file_name.py, you will see next

(venv) user@laptop% python3.11 -m pdb ./main.py
> Path/to/file/main.py(1)<module>()
-> a = 10
(Pdb) 

if you type command l (list) you wiil get

(Pdb) l
  1  -> a = 10
  2     b = a + 5
  3     c = a + b
  4     
  5     print(c)
[EOF]
(Pdb) 

But if you type ll (long list), you will see next

(Pdb) ll
  0     a = 10
  1  -> b = a + 5
  2     c = a + b
  3     
  4     print(c)
(Pdb) 

you can see cursor '->' show different positions.
I reproduced it for version 3.10 and 3.11
In python version 3.8 everything is fine. There is no problem. The position is the same.

My environment

Macos Monteray 12.6.5 CPU Intel

python 3.11
python 3.10
python 3.8

Reactions are currently unavailable

Metadata

Metadata

Labels

OS-macpendingThe issue will be closed if no feedback is providedThe issue will be closed if no feedback is providedstdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.