Remove shebangs from library code

This commit is contained in:
Sergio Pascual 2013-09-09 13:00:01 +02:00
commit aae25f5e55
13 changed files with 0 additions and 13 deletions

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from __future__ import absolute_import
import opcode

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from __future__ import absolute_import
import dis

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
'''Defines a bytecode based LLVM translator for llpython code.
'''

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from __future__ import absolute_import
import itertools

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
import ctypes

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
import pprint

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from __future__ import absolute_import
from . import opcode_util

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from __future__ import absolute_import
import sys

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
import dis

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
from .bytecode_visitor import BytecodeFlowVisitor, BenignBytecodeVisitorMixin

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
import ctypes

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
def doslice (in_string, lower, upper):

View file

@ -1,4 +1,3 @@
#! /usr/bin/env python
# ______________________________________________________________________
import llvm.core as lc