Add missing defaults to third-party stubs (#14617)

This commit is contained in:
Jelle Zijlstra
2025-08-21 13:36:29 -07:00
committed by GitHub
parent 82926783a4
commit 573b57d8da
54 changed files with 383 additions and 376 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ class LuaRuntime:
def require(self, modulename: str) -> object: ...
def globals(self) -> _LuaTable: ...
def table(self, *items: Any, **kwargs: Any) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = ...) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = False) -> _LuaTable: ...
def nogc(self) -> _LuaNoGC: ...
def gccollect(self) -> None: ...
def set_max_memory(self, max_memory: int, total: bool = False) -> None: ...
+1 -1
View File
@@ -91,7 +91,7 @@ class LuaRuntime:
def require(self, modulename: str) -> object: ...
def globals(self) -> _LuaTable: ...
def table(self, *items: Any, **kwargs: Any) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = ...) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = False) -> _LuaTable: ...
def nogc(self) -> _LuaNoGC: ...
def gccollect(self) -> None: ...
def set_max_memory(self, max_memory: int, total: bool = False) -> None: ...
+1 -1
View File
@@ -91,7 +91,7 @@ class LuaRuntime:
def require(self, modulename: str) -> object: ...
def globals(self) -> _LuaTable: ...
def table(self, *items: Any, **kwargs: Any) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = ...) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = False) -> _LuaTable: ...
def nogc(self) -> _LuaNoGC: ...
def gccollect(self) -> None: ...
def set_max_memory(self, max_memory: int, total: bool = False) -> None: ...
+1 -1
View File
@@ -91,7 +91,7 @@ class LuaRuntime:
def require(self, modulename: str) -> object: ...
def globals(self) -> _LuaTable: ...
def table(self, *items: Any, **kwargs: Any) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = ...) -> _LuaTable: ...
def table_from(self, *args: Any, recursive: bool = False) -> _LuaTable: ...
def nogc(self) -> _LuaNoGC: ...
def gccollect(self) -> None: ...
def set_max_memory(self, max_memory: int, total: bool = False) -> None: ...