diff options
| author | Ajax <commial@gmail.com> | 2017-04-24 18:16:47 +0200 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2017-04-24 18:16:47 +0200 |
| commit | 9c8869368ccc7ab6d9cf2edda4739d479056df17 (patch) | |
| tree | f984ba7807e5b1699a46c64019fe618f41c98cde /test/arch/x86/arch.py | |
| parent | 7ce0b4f473b2830ccc4d720455ba62c438e973c0 (diff) | |
| download | miasm-9c8869368ccc7ab6d9cf2edda4739d479056df17.tar.gz miasm-9c8869368ccc7ab6d9cf2edda4739d479056df17.zip | |
Remove PYTHONSTARTUP in end-user scripts
Diffstat (limited to '')
| -rw-r--r-- | test/arch/x86/arch.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/arch/x86/arch.py b/test/arch/x86/arch.py index 83039368..72884f7e 100644 --- a/test/arch/x86/arch.py +++ b/test/arch/x86/arch.py @@ -1,4 +1,3 @@ -import os import time import miasm2.expression.expression as m2_expr from miasm2.arch.x86.arch import mn_x86, deref_mem_ad, ParseAst, ast_int2expr, \ @@ -6,9 +5,6 @@ from miasm2.arch.x86.arch import mn_x86, deref_mem_ad, ParseAst, ast_int2expr, \ from miasm2.arch.x86.sem import ir_x86_16, ir_x86_32, ir_x86_64 from miasm2.core.bin_stream import bin_stream_str -filename = os.environ.get('PYTHONSTARTUP') -if filename and os.path.isfile(filename): - execfile(filename) for s in ["[EAX]", "[0x10]", "[EBX + 0x10]", |