9 checkers and other python interpreter dependent functions. |
9 checkers and other python interpreter dependent functions. |
10 """ |
10 """ |
11 |
11 |
12 from __future__ import unicode_literals |
12 from __future__ import unicode_literals |
13 try: |
13 try: |
14 bytes = unicode # __IGNORE_WARNING_M131__ |
14 bytes = unicode |
15 import StringIO as io # __IGNORE_EXCEPTION__ |
15 import StringIO as io # __IGNORE_EXCEPTION__ |
16 except NameError: |
16 except NameError: |
17 import io # __IGNORE_WARNING__ |
17 import io # __IGNORE_WARNING__ |
18 |
18 |
19 import json |
19 import json |