Merge pull request #83 from sergiopasra/noshebang

Remove shebangs from library code
This commit is contained in:
Jon Riehl 2013-09-09 14:12:40 -07:00
commit 09d9dbba1e
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