massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / jsonschema / jsonschema / _utils.pyi
1 from typing import Any, MutableMapping
2
3 class URIDict(MutableMapping[Any, Any]):
4     def normalize(self, uri): ...
5     store: Any
6     def __init__(self, *args, **kwargs) -> None: ...
7     def __getitem__(self, uri): ...
8     def __setitem__(self, uri, value) -> None: ...
9     def __delitem__(self, uri) -> None: ...
10     def __iter__(self): ...
11     def __len__(self): ...
12
13 class Unset: ...
14
15 def load_schema(name): ...
16 def indent(string, times: int = ...): ...
17 def format_as_index(indices): ...
18 def find_additional_properties(instance, schema) -> None: ...
19 def extras_msg(extras): ...
20 def types_msg(instance, types): ...
21 def flatten(suitable_for_isinstance): ...
22 def ensure_list(thing): ...
23 def equal(one, two): ...
24 def unbool(element, true=..., false=...): ...
25 def uniq(container): ...