diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-01-06 06:52:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-06 06:52:13 +0100 |
| commit | f89a4638923b89c4e17fa6811a62a7d01bccbdee (patch) | |
| tree | e1ab792c966c74faaf1d16b11036af9291d9a21f /miasm2/arch | |
| parent | 06461f1bd7a8c987b47381dffa3e1462cee8e44f (diff) | |
| parent | 1940e5baa0310bb6a3090f4a5a3cc832b024f03f (diff) | |
| download | miasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.tar.gz miasm-f89a4638923b89c4e17fa6811a62a7d01bccbdee.zip | |
Merge pull request #470 from a-vincent/master
Tidy up which files are executable and which are not
Diffstat (limited to 'miasm2/arch')
| -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 |