diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-01-05 16:37:06 +0100 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2017-01-05 16:37:06 +0100 |
| commit | bd075bf362ad18bffacabaae19e31f01a5922164 (patch) | |
| tree | 87c91952a8b9988bf361fb052b386547130e6624 /miasm2/arch | |
| parent | a5df84c008252b8d6dd560639a34edaf162f19c2 (diff) | |
| download | miasm-bd075bf362ad18bffacabaae19e31f01a5922164.tar.gz miasm-bd075bf362ad18bffacabaae19e31f01a5922164.zip | |
remove #! command line on files not supposed to be run at top level
Diffstat (limited to '')
| -rw-r--r-- | miasm2/arch/aarch64/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/aarch64/ira.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/aarch64/regs.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/arm/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/arm/ira.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/arm/regs.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/mips32/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/mips32/ira.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/mips32/regs.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/msp430/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/msp430/ira.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/msp430/sem.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/sh4/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/x86/arch.py | 1 | ||||
| -rw-r--r-- | miasm2/arch/x86/ira.py | 1 |
15 files changed, 0 insertions, 15 deletions
diff --git a/miasm2/arch/aarch64/arch.py b/miasm2/arch/aarch64/arch.py index b495821b..c875d787 100644 --- a/miasm2/arch/aarch64/arch.py +++ b/miasm2/arch/aarch64/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- import logging diff --git a/miasm2/arch/aarch64/ira.py b/miasm2/arch/aarch64/ira.py index 3f610360..1c2d0ae9 100644 --- a/miasm2/arch/aarch64/ira.py +++ b/miasm2/arch/aarch64/ira.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/aarch64/regs.py b/miasm2/arch/aarch64/regs.py index 6130d075..95527be3 100644 --- a/miasm2/arch/aarch64/regs.py +++ b/miasm2/arch/aarch64/regs.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/arm/arch.py b/miasm2/arch/arm/arch.py index 04e47585..0e58008d 100644 --- a/miasm2/arch/arm/arch.py +++ b/miasm2/arch/arm/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- import logging diff --git a/miasm2/arch/arm/ira.py b/miasm2/arch/arm/ira.py index b279fab5..4af7b753 100644 --- a/miasm2/arch/arm/ira.py +++ b/miasm2/arch/arm/ira.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/arm/regs.py b/miasm2/arch/arm/regs.py index 1393c372..a44878a8 100644 --- a/miasm2/arch/arm/regs.py +++ b/miasm2/arch/arm/regs.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/mips32/arch.py b/miasm2/arch/mips32/arch.py index 38ed2811..2ac16770 100644 --- a/miasm2/arch/mips32/arch.py +++ b/miasm2/arch/mips32/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- import logging diff --git a/miasm2/arch/mips32/ira.py b/miasm2/arch/mips32/ira.py index de508e41..fd951791 100644 --- a/miasm2/arch/mips32/ira.py +++ b/miasm2/arch/mips32/ira.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/mips32/regs.py b/miasm2/arch/mips32/regs.py index b64b40d5..974d3a2b 100644 --- a/miasm2/arch/mips32/regs.py +++ b/miasm2/arch/mips32/regs.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import ExprId diff --git a/miasm2/arch/msp430/arch.py b/miasm2/arch/msp430/arch.py index ce0fe70f..a9f695ec 100644 --- a/miasm2/arch/msp430/arch.py +++ b/miasm2/arch/msp430/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- import logging diff --git a/miasm2/arch/msp430/ira.py b/miasm2/arch/msp430/ira.py index f9da81a7..2d6fdc8f 100644 --- a/miasm2/arch/msp430/ira.py +++ b/miasm2/arch/msp430/ira.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/msp430/sem.py b/miasm2/arch/msp430/sem.py index 92b005ad..4b52361d 100644 --- a/miasm2/arch/msp430/sem.py +++ b/miasm2/arch/msp430/sem.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import * diff --git a/miasm2/arch/sh4/arch.py b/miasm2/arch/sh4/arch.py index 7c76e003..d72e6945 100644 --- a/miasm2/arch/sh4/arch.py +++ b/miasm2/arch/sh4/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from pyparsing import * diff --git a/miasm2/arch/x86/arch.py b/miasm2/arch/x86/arch.py index 87e91756..90d0fcef 100644 --- a/miasm2/arch/x86/arch.py +++ b/miasm2/arch/x86/arch.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- import re diff --git a/miasm2/arch/x86/ira.py b/miasm2/arch/x86/ira.py index d496f380..bc09add4 100644 --- a/miasm2/arch/x86/ira.py +++ b/miasm2/arch/x86/ira.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python #-*- coding:utf-8 -*- from miasm2.expression.expression import ExprAff, ExprOp, ExprId |