diff options
Diffstat (limited to 'pygments/formatters')
-rwxr-xr-x | pygments/formatters/_mapping.py | 2 | ||||
-rw-r--r-- | pygments/formatters/html.py | 2 | ||||
-rw-r--r-- | pygments/formatters/latex.py | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/pygments/formatters/_mapping.py b/pygments/formatters/_mapping.py index 5086e519..48703694 100755 --- a/pygments/formatters/_mapping.py +++ b/pygments/formatters/_mapping.py @@ -13,8 +13,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import print_function - FORMATTERS = { 'BBCodeFormatter': ('pygments.formatters.bbcode', 'BBCode', ('bbcode', 'bb'), (), 'Format tokens with BBcodes. These formatting codes are used by many bulletin boards, so you can highlight your sourcecode with pygments before posting it there.'), 'BmpImageFormatter': ('pygments.formatters.img', 'img_bmp', ('bmp', 'bitmap'), ('*.bmp',), 'Create a bitmap image from source code. This uses the Python Imaging Library to generate a pixmap from the source code.'), diff --git a/pygments/formatters/html.py b/pygments/formatters/html.py index 530dede9..c5ae774d 100644 --- a/pygments/formatters/html.py +++ b/pygments/formatters/html.py @@ -9,8 +9,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import print_function - import os import sys import os.path diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py index 17c3fe11..d5f80ef8 100644 --- a/pygments/formatters/latex.py +++ b/pygments/formatters/latex.py @@ -9,8 +9,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import division - from io import StringIO from pygments.formatter import Formatter |