From aae25f5e55a9eeacf9a4e5807248f1042666c633 Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Mon, 9 Sep 2013 13:00:01 +0200 Subject: [PATCH] Remove shebangs from library code --- llpython/byte_control.py | 1 - llpython/byte_flow.py | 1 - llpython/byte_translator.py | 1 - llpython/bytecode_visitor.py | 1 - llpython/bytetype.py | 1 - llpython/control_flow.py | 1 - llpython/gen_bytecode_visitor.py | 1 - llpython/nobitey.py | 1 - llpython/opcode_util.py | 1 - llpython/phi_injector.py | 1 - llpython/pyaddfunc.py | 1 - llpython/tests/llfuncs.py | 1 - llpython/tests/llfunctys.py | 1 - 13 files changed, 13 deletions(-) diff --git a/llpython/byte_control.py b/llpython/byte_control.py index acd5a41..8ca407e 100644 --- a/llpython/byte_control.py +++ b/llpython/byte_control.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from __future__ import absolute_import import opcode diff --git a/llpython/byte_flow.py b/llpython/byte_flow.py index 2201791..197c839 100644 --- a/llpython/byte_flow.py +++ b/llpython/byte_flow.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from __future__ import absolute_import import dis diff --git a/llpython/byte_translator.py b/llpython/byte_translator.py index 9b6d2de..a6e5864 100644 --- a/llpython/byte_translator.py +++ b/llpython/byte_translator.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ '''Defines a bytecode based LLVM translator for llpython code. ''' diff --git a/llpython/bytecode_visitor.py b/llpython/bytecode_visitor.py index 009d1a0..3fa3f48 100644 --- a/llpython/bytecode_visitor.py +++ b/llpython/bytecode_visitor.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from __future__ import absolute_import import itertools diff --git a/llpython/bytetype.py b/llpython/bytetype.py index 211f3f8..484d09e 100644 --- a/llpython/bytetype.py +++ b/llpython/bytetype.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ import ctypes diff --git a/llpython/control_flow.py b/llpython/control_flow.py index 5ea030a..8026aba 100644 --- a/llpython/control_flow.py +++ b/llpython/control_flow.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ import pprint diff --git a/llpython/gen_bytecode_visitor.py b/llpython/gen_bytecode_visitor.py index b29bc56..a60b345 100644 --- a/llpython/gen_bytecode_visitor.py +++ b/llpython/gen_bytecode_visitor.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from __future__ import absolute_import from . import opcode_util diff --git a/llpython/nobitey.py b/llpython/nobitey.py index 68bde5f..4236d29 100644 --- a/llpython/nobitey.py +++ b/llpython/nobitey.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from __future__ import absolute_import import sys diff --git a/llpython/opcode_util.py b/llpython/opcode_util.py index efd0c5c..7a1972b 100644 --- a/llpython/opcode_util.py +++ b/llpython/opcode_util.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ import dis diff --git a/llpython/phi_injector.py b/llpython/phi_injector.py index ee28ab5..dfa1061 100644 --- a/llpython/phi_injector.py +++ b/llpython/phi_injector.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ from .bytecode_visitor import BytecodeFlowVisitor, BenignBytecodeVisitorMixin diff --git a/llpython/pyaddfunc.py b/llpython/pyaddfunc.py index 8e09839..d6a2945 100644 --- a/llpython/pyaddfunc.py +++ b/llpython/pyaddfunc.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ import ctypes diff --git a/llpython/tests/llfuncs.py b/llpython/tests/llfuncs.py index 2a8614f..8b5b1f3 100644 --- a/llpython/tests/llfuncs.py +++ b/llpython/tests/llfuncs.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ def doslice (in_string, lower, upper): diff --git a/llpython/tests/llfunctys.py b/llpython/tests/llfunctys.py index b552cf4..8335044 100644 --- a/llpython/tests/llfunctys.py +++ b/llpython/tests/llfunctys.py @@ -1,4 +1,3 @@ -#! /usr/bin/env python # ______________________________________________________________________ import llvm.core as lc