9472:5798ee4a8807 | 9473:3f23dbf37dbe |
---|---|
6 """ | 6 """ |
7 Module implementing an asynchronous file like socket interface for the | 7 Module implementing an asynchronous file like socket interface for the |
8 debugger. | 8 debugger. |
9 """ | 9 """ |
10 | 10 |
11 import contextlib | |
11 import socket | 12 import socket |
12 import threading | 13 import threading |
13 import contextlib | |
14 | 14 |
15 from DebugUtilities import prepareJsonCommand | 15 from DebugUtilities import prepareJsonCommand |
16 | 16 |
17 | 17 |
18 def AsyncPendingWrite(file): | 18 def AsyncPendingWrite(file): |