RefactoringRope/JsonClient.py

changeset 347
b5048b5ff454
parent 346
877cac2e8d94
child 354
a967ff16629a
equal deleted inserted replaced
346:877cac2e8d94 347:b5048b5ff454
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 from __future__ import unicode_literals 10 import io
11 try:
12 bytes = unicode
13 import StringIO as io # __IGNORE_EXCEPTION__
14 except NameError:
15 import io # __IGNORE_WARNING__
16
17 import sys 11 import sys
18 import socket 12 import socket
19 import select 13 import select
20 import traceback 14 import traceback
21 import json 15 import json

eric ide

mercurial