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 /example/jitter/sandbox_pe_x86_64.py | |
| parent | 7ce0b4f473b2830ccc4d720455ba62c438e973c0 (diff) | |
| download | miasm-9c8869368ccc7ab6d9cf2edda4739d479056df17.tar.gz miasm-9c8869368ccc7ab6d9cf2edda4739d479056df17.zip | |
Remove PYTHONSTARTUP in end-user scripts
Diffstat (limited to 'example/jitter/sandbox_pe_x86_64.py')
| -rw-r--r-- | example/jitter/sandbox_pe_x86_64.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/example/jitter/sandbox_pe_x86_64.py b/example/jitter/sandbox_pe_x86_64.py index 8d9db88e..773c54b9 100644 --- a/example/jitter/sandbox_pe_x86_64.py +++ b/example/jitter/sandbox_pe_x86_64.py @@ -1,12 +1,6 @@ -import os from pdb import pm from miasm2.analysis.sandbox import Sandbox_Win_x86_64 -# Python auto completion -filename = os.environ.get('PYTHONSTARTUP') -if filename and os.path.isfile(filename): - execfile(filename) - # Insert here user defined methods # Parse arguments |