4539:beac8323fa9e | 4541:e8ddd9d76414 |
---|---|
9 | 9 |
10 # | 10 # |
11 # The routines of the checker class are modeled after the ones found in | 11 # The routines of the checker class are modeled after the ones found in |
12 # pep257.py (version 0.2.4). | 12 # pep257.py (version 0.2.4). |
13 # | 13 # |
14 | |
15 from __future__ import unicode_literals | |
14 | 16 |
15 try: | 17 try: |
16 # Python 2 | 18 # Python 2 |
17 from StringIO import StringIO # __IGNORE_EXCEPTION__ | 19 from StringIO import StringIO # __IGNORE_EXCEPTION__ |
18 except ImportError: | 20 except ImportError: |