aboutsummaryrefslogtreecommitdiffstats
path: root/python-packages/order_utils/stubs
diff options
context:
space:
mode:
authorDaniel Pyrathon <pirosb3@gmail.com>2018-12-01 01:59:37 +0800
committerF. Eugene Aumson <feuGeneA@users.noreply.github.com>2018-12-01 01:59:37 +0800
commita1d4aa66bc6b3de041ec6e4eb4fe40383945510b (patch)
treea1da2661afb79fd429dfe774267351f3918b84f6 /python-packages/order_utils/stubs
parentfc3641b49938ea9dc5e77e633e798ca19aa812ff (diff)
downloaddexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar.gz
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar.bz2
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar.lz
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar.xz
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.tar.zst
dexon-sol-tools-a1d4aa66bc6b3de041ec6e4eb4fe40383945510b.zip
feat(order_utils.py): schema resolver cache (#1317)
* Implemented basic functionality for using cache layer of LocalRefResolver * Use `importlib` instead of `imp`, since it's been deprecated. Legacy `load_module()` reloads modules even if they are already imported, causing tests to fail when run in non-deterministic ordering, so we replace it with `import_module()`
Diffstat (limited to 'python-packages/order_utils/stubs')
-rw-r--r--python-packages/order_utils/stubs/jsonschema/__init__.pyi10
1 files changed, 8 insertions, 2 deletions
diff --git a/python-packages/order_utils/stubs/jsonschema/__init__.pyi b/python-packages/order_utils/stubs/jsonschema/__init__.pyi
index 762b58b22..442e2f65e 100644
--- a/python-packages/order_utils/stubs/jsonschema/__init__.pyi
+++ b/python-packages/order_utils/stubs/jsonschema/__init__.pyi
@@ -1,5 +1,11 @@
-from typing import Any, Dict
+from typing import Any, Dict, Tuple
-class RefResolver: pass
+
+class RefResolver:
+ def resolve(self, url: str) -> Tuple[str, Dict]:
+ ...
+
+
+class ValidationError(Exception): pass
def validate(instance: Any, schema: Dict, cls=None, *args, **kwargs) -> None: pass