comparison: src/eric7/EricNetwork/EricJsonClient.py
src/eric7/EricNetwork/EricJsonClient.py
- branch
- eric7
- changeset 9473
- 3f23dbf37dbe
- parent 9221
- bf71ee032bb4
- child 9653
- e67609152c5e
equal
deleted
inserted
replaced
5 |
5 |
6 """ |
6 """ |
7 Module implementing the JSON based client base class. |
7 Module implementing the JSON based client base class. |
8 """ |
8 """ |
9 |
9 |
|
10 import contextlib |
10 import io |
11 import io |
|
12 import json |
|
13 import select |
|
14 import socket |
11 import sys |
15 import sys |
12 import socket |
|
13 import select |
|
14 import traceback |
16 import traceback |
15 import json |
|
16 import contextlib |
|
17 |
17 |
18 |
18 |
19 class EricJsonClient: |
19 class EricJsonClient: |
20 """ |
20 """ |
21 Class implementing a JSON based client base class. |
21 Class implementing a JSON based client base class. |