python类ByteString()的实例源码

storage.py 文件源码 项目:python-caching 作者: bofm 项目源码 文件源码 阅读 20 收藏 0 点赞 0 评论 0
def __setitem__(self, key: ByteString, value: ByteString) -> None:
        raise NotImplementedError  # pragma: no cover
storage.py 文件源码 项目:python-caching 作者: bofm 项目源码 文件源码 阅读 28 收藏 0 点赞 0 评论 0
def get(self, key: ByteString, default=None) -> Union[bytes, None]:
        raise NotImplementedError  # pragma: no cover
test_annotations.py 文件源码 项目:rcli 作者: contains-io 项目源码 文件源码 阅读 23 收藏 0 点赞 0 评论 0
def test_string_types(create_project, run, type_, expected):
    """Test type hinting with string types."""
    with create_project('''
        from typing import Any, AnyStr, ByteString

        def types(value):
            # type: ({type}) -> Any
            """usage: say types <value>"""
            print(type(value))
    '''.format(type=type_)):
        assert run('say types abc').strip().split('\n') == [repr(expected)]
web.py 文件源码 项目:bernard 作者: BernardFW 项目源码 文件源码 阅读 26 收藏 0 点赞 0 评论 0
def sign_message(body: ByteString, secret: Text) -> Text:
    """
    Compute a message's signature.
    """

    return 'sha1={}'.format(
        hmac.new(secret.encode(), body, sha1).hexdigest()
    )
test_dialogflow.py 文件源码 项目:python-zulip-api 作者: zulip 项目源码 文件源码 阅读 25 收藏 0 点赞 0 评论 0
def read(self) -> ByteString:
        return json.dumps(self.response).encode()


问题


面经


文章

微信
公众号

扫码关注公众号