lief 0.16.5__cp38-cp38-win_amd64.whl → 0.17.0__cp38-cp38-win_amd64.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.

@@ -2,13 +2,17 @@ import enum
2
2
  import lief.assembly.aarch64
3
3
  from typing import Iterator, Optional, Union
4
4
 
5
- import lief
5
+ import lief.assembly.aarch64
6
6
 
7
7
 
8
8
  class Immediate(lief.assembly.aarch64.Operand):
9
9
  @property
10
10
  def value(self) -> int: ...
11
11
 
12
+ class Register(lief.assembly.aarch64.Operand):
13
+ @property
14
+ def value(self) -> Optional[Union[lief.assembly.aarch64.REG, lief.assembly.aarch64.SYSREG]]: ...
15
+
12
16
  class Memory(lief.assembly.aarch64.Operand):
13
17
  class SHIFT(enum.Enum):
14
18
  UNKNOWN = 0
@@ -42,7 +46,3 @@ class Memory(lief.assembly.aarch64.Operand):
42
46
  class PCRelative(lief.assembly.aarch64.Operand):
43
47
  @property
44
48
  def value(self) -> int: ...
45
-
46
- class Register(lief.assembly.aarch64.Operand):
47
- @property
48
- def value(self) -> Optional[Union[lief.assembly.aarch64.REG, lief.assembly.aarch64.SYSREG]]: ...