lief 0.16.5__cp313-cp313-win32.whl → 0.16.7__cp313-cp313-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of lief might be problematic. Click here for more details.
- lief/ART/__init__.pyi +19 -18
- lief/DEX/__init__.pyi +159 -159
- lief/ELF/__init__.pyi +2393 -2393
- lief/MachO/__init__.pyi +1481 -1479
- lief/OAT/__init__.pyi +153 -150
- lief/PE/__init__.pyi +2153 -2153
- lief/VDEX/__init__.pyi +10 -8
- lief/__init__.pyi +268 -263
- lief/_lief.pyd +0 -0
- lief/assembly/aarch64/__init__.pyi +14 -14
- lief/assembly/aarch64/operands/__init__.pyi +5 -5
- lief/assembly/arm/__init__.pyi +5 -5
- lief/assembly/ebpf/__init__.pyi +5 -5
- lief/assembly/mips/__init__.pyi +5 -5
- lief/assembly/powerpc/__init__.pyi +5 -5
- lief/assembly/riscv/__init__.pyi +5 -5
- lief/assembly/x86/__init__.pyi +14 -14
- lief/assembly/x86/operands/__init__.pyi +5 -5
- lief/dsc/__init__.pyi +26 -24
- lief/dwarf/__init__.pyi +149 -148
- lief/dwarf/parameters/__init__.pyi +3 -3
- lief/dwarf/types/__init__.pyi +49 -49
- lief/logging/__init__.pyi +12 -12
- lief/objc/__init__.pyi +26 -26
- lief/pdb/__init__.pyi +44 -44
- lief/pdb/types/__init__.pyi +22 -22
- {lief-0.16.5.dist-info → lief-0.16.7.dist-info}/METADATA +1 -1
- lief-0.16.7.dist-info/RECORD +33 -0
- lief-0.16.5.dist-info/RECORD +0 -33
- {lief-0.16.5.dist-info → lief-0.16.7.dist-info}/WHEEL +0 -0
lief/VDEX/__init__.pyi
CHANGED
|
@@ -4,8 +4,16 @@ import os
|
|
|
4
4
|
from typing import Iterator, Optional, Union, overload
|
|
5
5
|
|
|
6
6
|
import lief
|
|
7
|
+
import lief.Android
|
|
8
|
+
import lief.OAT
|
|
7
9
|
|
|
8
10
|
|
|
11
|
+
@overload
|
|
12
|
+
def parse(filename: str) -> Optional[File]: ...
|
|
13
|
+
|
|
14
|
+
@overload
|
|
15
|
+
def parse(obj: Union[io.IOBase | os.PathLike], name: str = '') -> Optional[File]: ...
|
|
16
|
+
|
|
9
17
|
class File(lief.Object):
|
|
10
18
|
@property
|
|
11
19
|
def header(self) -> Header: ...
|
|
@@ -39,16 +47,10 @@ class Header(lief.Object):
|
|
|
39
47
|
|
|
40
48
|
def __str__(self) -> str: ...
|
|
41
49
|
|
|
42
|
-
def android_version(vdex_version: int) -> lief.Android.ANDROID_VERSIONS: ...
|
|
43
|
-
|
|
44
|
-
@overload
|
|
45
|
-
def parse(filename: str) -> Optional[File]: ...
|
|
46
|
-
|
|
47
|
-
@overload
|
|
48
|
-
def parse(obj: Union[io.IOBase | os.PathLike], name: str = '') -> Optional[File]: ...
|
|
49
|
-
|
|
50
50
|
@overload
|
|
51
51
|
def version(file: str) -> int: ...
|
|
52
52
|
|
|
53
53
|
@overload
|
|
54
54
|
def version(raw: Sequence[int]) -> int: ...
|
|
55
|
+
|
|
56
|
+
def android_version(vdex_version: int) -> lief.Android.ANDROID_VERSIONS: ...
|