added missing methods to stub file
This commit is contained in:
parent
b43a4840ac
commit
1f76b62580
1 changed files with 15 additions and 1 deletions
|
|
@ -6,9 +6,23 @@ ListType = t.TypeVar("ListType")
|
|||
|
||||
SearchPattern = t.Union[t.AnyStr, re.Pattern[t.AnyStr]]
|
||||
|
||||
globalPrintFullStrings: bool
|
||||
globalPrintFalseFlags: bool
|
||||
globalPrintPrivateEntries: bool
|
||||
|
||||
def setGlobalPrintFullStrings(enabled: bool = ...) -> None: ...
|
||||
def setGlobalPrintFalseFlags(enabled: bool = ...) -> None: ...
|
||||
def setGlobalPrintPrivateEntries(enabled: bool = ...) -> None: ...
|
||||
def recursion_lock(
|
||||
retval: str = ..., lock_name: str = ...
|
||||
) -> t.Callable[[t.Callable[..., str]], t.Callable[..., str]]: ...
|
||||
|
||||
class Container(t.Generic[ContainerType], t.Dict[str, ContainerType]):
|
||||
def __getattr__(self, name: str) -> ContainerType: ...
|
||||
def update(self, seqordict: t.Union[t.Dict[str, ContainerType], t.Tuple[str, ContainerType]]) -> None: ...
|
||||
def update(
|
||||
self,
|
||||
seqordict: t.Union[t.Dict[str, ContainerType], t.Tuple[str, ContainerType]],
|
||||
) -> None: ...
|
||||
def search(self, pattern: SearchPattern[t.Any]) -> t.Any: ...
|
||||
def search_all(self, pattern: SearchPattern[t.Any]) -> t.Any: ...
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue