Show More
@@ -11,6 +11,13 This contains aliases to hide python ver | |||||
11 | from __future__ import absolute_import |
|
11 | from __future__ import absolute_import | |
12 |
|
12 | |||
13 | try: |
|
13 | try: | |
|
14 | import cStringIO as io | |||
|
15 | stringio = io.StringIO | |||
|
16 | except ImportError: | |||
|
17 | import io | |||
|
18 | stringio = io.StringIO | |||
|
19 | ||||
|
20 | try: | |||
14 | import Queue as _queue |
|
21 | import Queue as _queue | |
15 | _queue.Queue |
|
22 | _queue.Queue | |
16 | except ImportError: |
|
23 | except ImportError: |
General Comments 0
You need to be logged in to leave comments.
Login now