7 |
7 |
8 :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. |
8 :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. |
9 :license: BSD, see LICENSE for details. |
9 :license: BSD, see LICENSE for details. |
10 """ |
10 """ |
11 try: |
11 try: |
12 str = unicode # __IGNORE_WARNING__ |
12 str = unicode |
13 except (NameError): |
13 except NameError: |
14 basestring = str |
14 basestring = str |
15 |
15 |
16 import re, itertools |
16 import re, itertools |
17 |
17 |
18 from pygments.filter import apply_filters, Filter |
18 from pygments.filter import apply_filters, Filter |