From 35703539d0f2b4ddb3b11d0de8c9634af59ab71f Mon Sep 17 00:00:00 2001 From: Hsuan Lee Date: Wed, 6 Mar 2019 17:46:50 +0800 Subject: Deploy @dexon-foundation/0x.js --- .../order_utils/stubs/distutils/__init__.pyi | 0 .../stubs/distutils/command/__init__.pyi | 0 .../order_utils/stubs/distutils/command/clean.pyi | 7 ------ .../order_utils/stubs/pytest/__init__.pyi | 0 .../order_utils/stubs/pytest/raises.pyi | 1 - .../order_utils/stubs/setuptools/__init__.pyi | 8 ------- .../stubs/setuptools/command/__init__.pyi | 0 .../order_utils/stubs/setuptools/command/test.pyi | 3 --- .../order_utils/stubs/sha3/__init__.pyi | 0 .../order_utils/stubs/web3/__init__.pyi | 28 ---------------------- .../order_utils/stubs/web3/__init___BASE_31011.pyi | 26 -------------------- .../order_utils/stubs/web3/exceptions.pyi | 2 -- .../order_utils/stubs/web3/providers/__init__.pyi | 0 .../order_utils/stubs/web3/providers/base.pyi | 2 -- .../order_utils/stubs/web3/utils/__init__.pyi | 0 .../order_utils/stubs/web3/utils/datatypes.pyi | 3 --- 16 files changed, 80 deletions(-) delete mode 100644 python-packages/order_utils/stubs/distutils/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/distutils/command/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/distutils/command/clean.pyi delete mode 100644 python-packages/order_utils/stubs/pytest/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/pytest/raises.pyi delete mode 100644 python-packages/order_utils/stubs/setuptools/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/setuptools/command/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/setuptools/command/test.pyi delete mode 100644 python-packages/order_utils/stubs/sha3/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/web3/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi delete mode 100644 python-packages/order_utils/stubs/web3/exceptions.pyi delete mode 100644 python-packages/order_utils/stubs/web3/providers/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/web3/providers/base.pyi delete mode 100644 python-packages/order_utils/stubs/web3/utils/__init__.pyi delete mode 100644 python-packages/order_utils/stubs/web3/utils/datatypes.pyi (limited to 'python-packages/order_utils/stubs') diff --git a/python-packages/order_utils/stubs/distutils/__init__.pyi b/python-packages/order_utils/stubs/distutils/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/distutils/command/__init__.pyi b/python-packages/order_utils/stubs/distutils/command/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/distutils/command/clean.pyi b/python-packages/order_utils/stubs/distutils/command/clean.pyi deleted file mode 100644 index 46a42ddb1..000000000 --- a/python-packages/order_utils/stubs/distutils/command/clean.pyi +++ /dev/null @@ -1,7 +0,0 @@ -from distutils.core import Command - -class clean(Command): - def initialize_options(self: clean) -> None: ... - def finalize_options(self: clean) -> None: ... - def run(self: clean) -> None: ... - ... diff --git a/python-packages/order_utils/stubs/pytest/__init__.pyi b/python-packages/order_utils/stubs/pytest/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/pytest/raises.pyi b/python-packages/order_utils/stubs/pytest/raises.pyi deleted file mode 100644 index 2e3b29f3d..000000000 --- a/python-packages/order_utils/stubs/pytest/raises.pyi +++ /dev/null @@ -1 +0,0 @@ -def raises(exception: Exception) -> ExceptionInfo: ... diff --git a/python-packages/order_utils/stubs/setuptools/__init__.pyi b/python-packages/order_utils/stubs/setuptools/__init__.pyi deleted file mode 100644 index 8ea8d32b7..000000000 --- a/python-packages/order_utils/stubs/setuptools/__init__.pyi +++ /dev/null @@ -1,8 +0,0 @@ -from distutils.dist import Distribution -from typing import Any, List - -def setup(**attrs: Any) -> Distribution: ... - -class Command: ... - -def find_packages(where: str) -> List[str]: ... diff --git a/python-packages/order_utils/stubs/setuptools/command/__init__.pyi b/python-packages/order_utils/stubs/setuptools/command/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/setuptools/command/test.pyi b/python-packages/order_utils/stubs/setuptools/command/test.pyi deleted file mode 100644 index c5ec770ad..000000000 --- a/python-packages/order_utils/stubs/setuptools/command/test.pyi +++ /dev/null @@ -1,3 +0,0 @@ -from setuptools import Command - -class test(Command): ... diff --git a/python-packages/order_utils/stubs/sha3/__init__.pyi b/python-packages/order_utils/stubs/sha3/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/web3/__init__.pyi b/python-packages/order_utils/stubs/web3/__init__.pyi deleted file mode 100644 index b2af95475..000000000 --- a/python-packages/order_utils/stubs/web3/__init__.pyi +++ /dev/null @@ -1,28 +0,0 @@ -from typing import Dict, Optional, Union - -from web3.utils import datatypes -from web3.providers.base import BaseProvider - - -class Web3: - class HTTPProvider(BaseProvider): - ... - - def __init__(self, provider: BaseProvider) -> None: ... - - @staticmethod - def sha3( - primitive: Optional[Union[bytes, int, None]] = None, - text: Optional[str] = None, - hexstr: Optional[str] = None - ) -> bytes: ... - - class net: - version: str - ... - - class eth: - @staticmethod - def contract(address: str, abi: Dict) -> datatypes.Contract: ... - ... - ... diff --git a/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi b/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi deleted file mode 100644 index fcecc7434..000000000 --- a/python-packages/order_utils/stubs/web3/__init___BASE_31011.pyi +++ /dev/null @@ -1,26 +0,0 @@ -from typing import Dict, Optional, Union - -from web3.utils import datatypes - - -class Web3: - class HTTPProvider: ... - - def __init__(self, provider: HTTPProvider) -> None: ... - - @staticmethod - def sha3( - primitive: Optional[Union[bytes, int, None]] = None, - text: Optional[str] = None, - hexstr: Optional[str] = None - ) -> bytes: ... - - class net: - version: str - ... - - class eth: - @staticmethod - def contract(address: str, abi: Dict) -> datatypes.Contract: ... - ... - ... diff --git a/python-packages/order_utils/stubs/web3/exceptions.pyi b/python-packages/order_utils/stubs/web3/exceptions.pyi deleted file mode 100644 index 83abf973d..000000000 --- a/python-packages/order_utils/stubs/web3/exceptions.pyi +++ /dev/null @@ -1,2 +0,0 @@ -class BadFunctionCallOutput(Exception): - ... diff --git a/python-packages/order_utils/stubs/web3/providers/__init__.pyi b/python-packages/order_utils/stubs/web3/providers/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/web3/providers/base.pyi b/python-packages/order_utils/stubs/web3/providers/base.pyi deleted file mode 100644 index 82ca9e3da..000000000 --- a/python-packages/order_utils/stubs/web3/providers/base.pyi +++ /dev/null @@ -1,2 +0,0 @@ -class BaseProvider: - ... diff --git a/python-packages/order_utils/stubs/web3/utils/__init__.pyi b/python-packages/order_utils/stubs/web3/utils/__init__.pyi deleted file mode 100644 index e69de29bb..000000000 diff --git a/python-packages/order_utils/stubs/web3/utils/datatypes.pyi b/python-packages/order_utils/stubs/web3/utils/datatypes.pyi deleted file mode 100644 index 70baff372..000000000 --- a/python-packages/order_utils/stubs/web3/utils/datatypes.pyi +++ /dev/null @@ -1,3 +0,0 @@ -class Contract: - def call(self): ... - ... -- cgit