[issue41571] Implement thread-related commands in pdb

2022-03-28 Thread Cebtenzzre
Change by Cebtenzzre : -- nosy: +cebtenzzre ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue41571] Implement thread-related commands in pdb

2020-09-09 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue41571] Implement thread-related commands in pdb

2020-09-09 Thread Dong-hee Na
Dong-hee Na added the comment: I am +1 on this project :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41571] Implement thread-related commands in pdb

2020-09-09 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue41571] Implement thread-related commands in pdb

2020-09-06 Thread Bar Harel
Change by Bar Harel : -- nosy: +bar.harel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Another possibility would be accept the reality of the switching delay (so all the other commands work without extra changes) and working to minimize it by setting sys.setswitchinterval() to something ridiculously low and then switching it back to the

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: We may need to think as well how some commands interest when you are in a different thread context. For instance, stepping into something when you are in a different thread is equivalent to setting a breakpoints in the next thread instruction, so this

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: * Displaying all threads is trivial. * Stopping all threads is trivial because of the GIL. When pdb runs in a thread all other threads cannot execute python code. They can execute native code bit there is not much we can do about it. * Switching thre

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- Removed message: https://bugs.python.org/msg375580 ___ Python tracker ___ ___ Python-bugs-list

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- title: Allow pdb to switch to a different thread -> Implement thread-related commands in pdb ___ Python tracker ___ __

[issue41571] Implement thread-related commands in pdb

2020-08-17 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I will start preparing some pull requests unless someone has any concerns about this -- ___ Python tracker ___ __