You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For python < 3.11 it was possible to perform a jump in debug mode (pydevd) from a thread by setting f_lineno: frame.f_lineno = jump_lineno
After 3.11 it yields: ValueError: can't jump from the 'call' trace event of a new frame
Is there a way how could this still work for 3.11 (I'll take hacky solutions)?
Or by any chance is it possible to modify cpython code before the final release to make this work(🙏)?
Data:
CPython versions tested on: Python-3.11.0a7
Operating system and architecture: Linux q 5.4.0-42-generic
The text was updated successfully, but these errors were encountered:
Not a Python bug per se but it is affecting Reloadium https://github.com/reloadware/reloadium
For python < 3.11 it was possible to perform a jump in debug mode (pydevd) from a thread by setting f_lineno:
frame.f_lineno = jump_lineno
After 3.11 it yields:
ValueError: can't jump from the 'call' trace event of a new frame
Is there a way how could this still work for 3.11 (I'll take hacky solutions)?
Or by any chance is it possible to modify cpython code before the final release to make this work(🙏)?
Data:
The text was updated successfully, but these errors were encountered: