diff --git a/examples/c-to-c.py b/examples/c-to-c.py index 4252dfdf..190553b9 100644 --- a/examples/c-to-c.py +++ b/examples/c-to-c.py @@ -7,7 +7,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #------------------------------------------------------------------------------ -from __future__ import print_function import sys # This is not required if you've installed pycparser into diff --git a/examples/c_json.py b/examples/c_json.py index 2b33360c..7eafdc58 100644 --- a/examples/c_json.py +++ b/examples/c_json.py @@ -34,8 +34,6 @@ # } # } #------------------------------------------------------------------------------ -from __future__ import print_function - import json import sys import re diff --git a/examples/dump_ast.py b/examples/dump_ast.py index e82d0382..d8845577 100644 --- a/examples/dump_ast.py +++ b/examples/dump_ast.py @@ -6,7 +6,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import argparse import sys diff --git a/examples/explore_ast.py b/examples/explore_ast.py index a75dd1f6..49e7fe45 100644 --- a/examples/explore_ast.py +++ b/examples/explore_ast.py @@ -12,7 +12,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import sys # This is not required if you've installed pycparser into diff --git a/examples/func_calls.py b/examples/func_calls.py index d72bd8fe..d2844a52 100644 --- a/examples/func_calls.py +++ b/examples/func_calls.py @@ -7,7 +7,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import platform import sys diff --git a/examples/func_defs.py b/examples/func_defs.py index 5023ff7b..8765e1f9 100644 --- a/examples/func_defs.py +++ b/examples/func_defs.py @@ -10,7 +10,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import sys # This is not required if you've installed pycparser into diff --git a/examples/func_defs_add_param.py b/examples/func_defs_add_param.py index e9a89d13..885075ba 100644 --- a/examples/func_defs_add_param.py +++ b/examples/func_defs_add_param.py @@ -7,8 +7,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function - import sys sys.path.extend(['.', '..']) diff --git a/examples/rewrite_ast.py b/examples/rewrite_ast.py index ea9adb36..568b20b4 100644 --- a/examples/rewrite_ast.py +++ b/examples/rewrite_ast.py @@ -6,7 +6,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import sys sys.path.extend(['.', '..']) diff --git a/examples/serialize_ast.py b/examples/serialize_ast.py index af69b5f2..48e504f4 100644 --- a/examples/serialize_ast.py +++ b/examples/serialize_ast.py @@ -7,7 +7,6 @@ # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- -from __future__ import print_function import pickle import sys