diff options
| author | Georg Brandl <georg@python.org> | 2020-01-05 08:02:50 +0100 |
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2020-01-05 08:02:50 +0100 |
| commit | 57ddd1f1f03ba0ce51eeaabfe15aa5da90574784 (patch) | |
| tree | 46c79e1c34fb77ee7743e25c6dbc7ff26f9506b5 /pygments/formatters | |
| parent | 5f4b1d0ffe1274f8632911e0edf183995f787e41 (diff) | |
| download | pygments-git-py2removal.tar.gz | |
Remove unneeded future imports.py2removal
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 |
