diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-02-15 16:41:53 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2017-03-13 14:13:14 +0100 |
| commit | 72d7235d59d0998bee24b3bf9b18d5501e84f085 (patch) | |
| tree | 6ceb628e7b0e80f21fc2baebc7eeedb6580bd3f2 /miasm2/analysis/binary.py | |
| parent | d0727aa74bf264580e82f37abc9833b75804daca (diff) | |
| download | focaccia-miasm-72d7235d59d0998bee24b3bf9b18d5501e84f085.tar.gz focaccia-miasm-72d7235d59d0998bee24b3bf9b18d5501e84f085.zip | |
Asmbloc: rename asm_symbol_pool to AsmSymbolPool
Diffstat (limited to 'miasm2/analysis/binary.py')
| -rw-r--r-- | miasm2/analysis/binary.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/analysis/binary.py b/miasm2/analysis/binary.py index d47ca884..38a6be15 100644 --- a/miasm2/analysis/binary.py +++ b/miasm2/analysis/binary.py @@ -2,7 +2,7 @@ import logging from miasm2.core.bin_stream import bin_stream_str, bin_stream_elf, bin_stream_pe from miasm2.jitter.csts import PAGE_READ -from miasm2.core.asmbloc import asm_symbol_pool +from miasm2.core.asmbloc import AsmSymbolPool log = logging.getLogger("binary") @@ -94,7 +94,7 @@ class Container(object): self._bin_stream = None self._entry_point = None self._arch = None - self._symbol_pool = asm_symbol_pool() + self._symbol_pool = AsmSymbolPool() # Launch parsing self.parse(*args, **kwargs) @@ -121,7 +121,7 @@ class Container(object): @property def symbol_pool(self): - "asm_symbol_pool instance preloaded with container symbols (if any)" + "AsmSymbolPool instance preloaded with container symbols (if any)" return self._symbol_pool |