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 /scripts | |
parent | 5f4b1d0ffe1274f8632911e0edf183995f787e41 (diff) | |
download | pygments-git-py2removal.tar.gz |
Remove unneeded future imports.py2removal
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check_sources.py | 2 | ||||
-rwxr-xr-x | scripts/debug_lexer.py | 2 | ||||
-rw-r--r-- | scripts/detect_missing_analyse_text.py | 1 | ||||
-rw-r--r-- | scripts/get_vimkw.py | 2 | ||||
-rwxr-xr-x | scripts/vim2pygments.py | 2 |
5 files changed, 0 insertions, 9 deletions
diff --git a/scripts/check_sources.py b/scripts/check_sources.py index b1f3bccf..57151192 100755 --- a/scripts/check_sources.py +++ b/scripts/check_sources.py @@ -11,8 +11,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import print_function - import io import os import re diff --git a/scripts/debug_lexer.py b/scripts/debug_lexer.py index ef01a23f..6963a5c0 100755 --- a/scripts/debug_lexer.py +++ b/scripts/debug_lexer.py @@ -12,8 +12,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import print_function - import os import sys diff --git a/scripts/detect_missing_analyse_text.py b/scripts/detect_missing_analyse_text.py index ab58558e..e9383421 100644 --- a/scripts/detect_missing_analyse_text.py +++ b/scripts/detect_missing_analyse_text.py @@ -1,4 +1,3 @@ -from __future__ import print_function import sys from pygments.lexers import get_all_lexers, find_lexer_class diff --git a/scripts/get_vimkw.py b/scripts/get_vimkw.py index a1b6873e..eecbc43f 100644 --- a/scripts/get_vimkw.py +++ b/scripts/get_vimkw.py @@ -1,5 +1,3 @@ -from __future__ import print_function - import re from pygments.util import format_lines diff --git a/scripts/vim2pygments.py b/scripts/vim2pygments.py index 7012157c..50d69bc6 100755 --- a/scripts/vim2pygments.py +++ b/scripts/vim2pygments.py @@ -11,8 +11,6 @@ :license: BSD, see LICENSE for details. """ -from __future__ import print_function - import sys import re from os import path |