lief 0.16.5__cp310-cp310-macosx_11_0_arm64.whl → 0.17.0__cp310-cp310-macosx_11_0_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/_lief.so CHANGED
Binary file
@@ -102,3 +102,20 @@ class Instruction:
102
102
  def branch_target(self) -> Union[int, lief.lief_errors]: ...
103
103
 
104
104
  def __str__(self) -> str: ...
105
+
106
+ class AssemblerConfig:
107
+ def __init__(self) -> None: ...
108
+
109
+ class DIALECT(enum.Enum):
110
+ DEFAULT_DIALECT = 0
111
+
112
+ X86_INTEL = 1
113
+
114
+ X86_ATT = 2
115
+
116
+ @staticmethod
117
+ def default_config() -> AssemblerConfig: ...
118
+
119
+ dialect: AssemblerConfig.DIALECT
120
+
121
+ def resolve_symbol(self, name: str) -> int | None: ...