lief 0.16.5__cp311-cp311-win_arm64.whl → 0.16.7__cp311-cp311-win_arm64.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/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: ...