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 iritkatriel
Recipients georg.brandl, iritkatriel, scotchka, xdegaye
Date 2020-08-28.09:11:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1598605888.26.0.232004803902.issue22577@roundup.psfhosted.org>
In-reply-to
Content
This is now resolved, on Python 3.10 I get:

>python -m pdb tmp1.py
Running Release|Win32 interpreter...
> c:\users\user\src\cpython\tmp1.py(1)<module>()
-> def foo(x):
(Pdb) jump 4
> c:\users\user\src\cpython\tmp1.py(4)<module>()
-> lineno = 4
(Pdb) q

C:\Users\User\src\cpython>python -m pdb tmp1.py
Running Release|Win32 interpreter...
> c:\users\user\src\cpython\tmp1.py(1)<module>()
-> def foo(x):
(Pdb) x=123
(Pdb) jump 4
> c:\users\user\src\cpython\tmp1.py(4)<module>()
-> lineno = 4
(Pdb) x
123
(Pdb)


I believe this ticket can be closed.
History
Date User Action Args
2020-08-28 09:11:28iritkatrielsetrecipients: + iritkatriel, georg.brandl, xdegaye, scotchka
2020-08-28 09:11:28iritkatrielsetmessageid: <1598605888.26.0.232004803902.issue22577@roundup.psfhosted.org>
2020-08-28 09:11:28iritkatriellinkissue22577 messages
2020-08-28 09:11:28iritkatrielcreate