6 """ |
6 """ |
7 Module implementing an asynchronous file like socket interface for the debugger. |
7 Module implementing an asynchronous file like socket interface for the debugger. |
8 """ |
8 """ |
9 |
9 |
10 import socket |
10 import socket |
11 import sys |
11 |
12 |
12 from DebugProtocol import EOT |
13 from DebugProtocol import EOT, RequestOK |
|
14 |
|
15 |
13 |
16 def AsyncPendingWrite(file): |
14 def AsyncPendingWrite(file): |
17 """ |
15 """ |
18 Module function to check for data to be written. |
16 Module function to check for data to be written. |
19 |
17 |