File tree Expand file tree Collapse file tree 9 files changed +13
-13
lines changed
Expand file tree Collapse file tree 9 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- from dissect .executable .pe .helpers .builder import Builder
2- from dissect .executable .pe .helpers .exports import ExportFunction , ExportManager
3- from dissect .executable .pe .helpers .imports import (
1+ from dissect .executable .pe .builder import Builder
2+ from dissect .executable .pe .patcher import Patcher
3+ from dissect .executable .pe .pe import PE
4+ from dissect .executable .pe .sections .exports import ExportFunction , ExportManager
5+ from dissect .executable .pe .sections .imports import (
46 ImportFunction ,
57 ImportManager ,
68 ImportModule ,
79)
8- from dissect .executable .pe .helpers .patcher import Patcher
9- from dissect .executable .pe .helpers .resources import Resource , ResourceManager
10- from dissect .executable .pe .helpers .sections import PESection
11- from dissect .executable .pe .pe import PE
10+ from dissect .executable .pe .sections .resources import Resource , ResourceManager
11+ from dissect .executable .pe .sections .sections import PESection
1212
1313__all__ = [
1414 "PE" ,
Original file line number Diff line number Diff line change 1414)
1515from dissect .executable .pe import patcher
1616from dissect .executable .pe .c_pe import c_cv_info , c_pe
17- from dissect .executable .pe .helpers import (
17+ from dissect .executable .pe .sections import (
1818 exports ,
1919 imports ,
2020 relocations ,
File renamed without changes.
Original file line number Diff line number Diff line change 88from dissect .executable .utils import DictManager
99
1010if TYPE_CHECKING :
11- from dissect .executable .pe .helpers .sections import PESection
1211 from dissect .executable .pe .pe import PE
12+ from dissect .executable .pe .sections .sections import PESection
1313
1414
1515@dataclass
Original file line number Diff line number Diff line change 1111 from collections .abc import Iterator
1212 from struct import Struct
1313
14- from dissect .executable .pe .helpers .sections import PESection
1514 from dissect .executable .pe .pe import PE
15+ from dissect .executable .pe .sections .sections import PESection
1616
1717
1818class ImportModule :
Original file line number Diff line number Diff line change 88from dissect .executable .utils import ListManager
99
1010if TYPE_CHECKING :
11- from dissect .executable .pe .helpers .sections import PESection
1211 from dissect .executable .pe .pe import PE
12+ from dissect .executable .pe .sections .sections import PESection
1313
1414
1515@dataclass
Original file line number Diff line number Diff line change 1616 from collections .abc import Iterator
1717 from typing import BinaryIO , Callable
1818
19- from dissect .executable .pe .helpers .sections import PESection
2019 from dissect .executable .pe .pe import PE
20+ from dissect .executable .pe .sections .sections import PESection
2121
2222
2323@dataclass
File renamed without changes.
Original file line number Diff line number Diff line change 77from dissect .executable .utils import ListManager
88
99if TYPE_CHECKING :
10- from dissect .executable .pe .helpers .sections import PESection
1110 from dissect .executable .pe .pe import PE
11+ from dissect .executable .pe .sections .sections import PESection
1212
1313
1414class TLSManager (ListManager [int ]):
You can’t perform that action at this time.
0 commit comments