mit neuen venv und exe-Files

This commit is contained in:
2024-11-03 17:26:54 +01:00
parent 07c05a338a
commit 0c373ff593
15115 changed files with 1998469 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
from typing import Any, ClassVar
import lief.logging # type: ignore
class LEVEL:
CRITICAL: ClassVar[LEVEL] = ...
DEBUG: ClassVar[LEVEL] = ...
ERROR: ClassVar[LEVEL] = ...
INFO: ClassVar[LEVEL] = ...
TRACE: ClassVar[LEVEL] = ...
WARN: ClassVar[LEVEL] = ...
__name__: str
def __init__(self, *args, **kwargs) -> None: ...
def __ge__(self, other) -> bool: ...
def __gt__(self, other) -> bool: ...
def __hash__(self) -> int: ...
def __index__(self) -> Any: ...
def __int__(self) -> int: ...
def __le__(self, other) -> bool: ...
def __lt__(self, other) -> bool: ...
def disable() -> None: ...
def enable() -> None: ...
def log(level: lief.logging.LEVEL, msg: str) -> None: ...
def reset() -> None: ...
def set_level(level: lief.logging.LEVEL) -> None: ...
def set_path(path: str) -> None: ...