-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Windows XP 32 bits Home (Python 3.4.3) #38
Comments
`>pip list altgraph 0.17 |
1 similar comment
`>pip list altgraph 0.17 |
Hello. Saved the test case from here http://onreader.mdl.ru/PythonParallelProgrammingCookbook.2nd/content/Ch09.html
(Chapter 9. Python Debugging and Testing from "The Book of Python Parallel Programming Recipes", 2nd ed. In Russian)
along the path C:/1 in the winpdb_reborn_code_example.py file.
`import time
import os
from random import randint
from threading import Thread
class MyThreadClass (Thread):
def init(self, name, duration):
Thread.init(self)
self.name = name
self.duration = duration
def run(self):
print ("---> " + self.name +
" running, belonging to process ID "
+ str(os.getpid()) + "\n")
time.sleep(self.duration)
print ("---> " + self.name + " over\n")
def main():
start_time = time.time()
if name == "main":
main()`
`
Successfully installed winpdb-reborn-2.0.0.1
C:\Documents and Settings\ia>cd C:\1
C:\1>python -m winpdb .\winpdb_reborn_code_example.py
23:59:47.844 rpdb2.py:6148 MainThread/2328 __setrecursionlimit(): rl = 1000
00:00:00.657 winpdb.py:3006 MainThread/2328 set_font(): Using font "Courier New"
for Console
00:00:00.688 winpdb.py:3006 MainThread/2328 set_font(): Using font "Courier New"
for Console
00:00:11.203 session_manager.py:1282 Thread-2/2196 _spawn_server(): Terminal ope
n string: 'start "rpdb2 - Version RPDB_1_5_0 - Debuggee Console" cmd.exe /K ""C:
\Python34\python.exe" "session_manager\..\rpdb2.py" --debugee --pwd="q2G_A2L
M" --rid=6268676 "c:\1\winpdb_reborn_code_example.py" "'
00:00:12.938 session_manager.py:1094 Thread-2/2196 __wait_for_debuggee(): Scanni
ng for debuggee...
00:00:17.016 session_manager.py:1094 Thread-2/2196 __wait_for_debuggee(): Scanni
ng for debuggee...
00:00:20.047 session_manager.py:1094 Thread-2/2196 __wait_for_debuggee(): Scanni
ng for debuggee...
`
Another console window started up with this text:
`
C:\Python34\python.exe: can't open file 'session_manager..\rpdb2.py': [Errno 2]
No such file or directory
C:\1>
`
https://s8.hostingkartinok.com/uploads/images/2020/09/93502ddefe8ff570043a997eb5f4eb66.jpg
The text was updated successfully, but these errors were encountered: