Add typesepc_to_str function to mitmproxy/utils/typechck.py

This commit is contained in:
Matthew Shao 2017-06-13 23:21:52 +08:00
parent 2c0f6c2023
commit 1177e6d907
2 changed files with 13 additions and 8 deletions

View File

@ -425,14 +425,7 @@ def dump_dicts(opts):
options_list = []
for k in sorted(opts.keys()):
o = opts._options[k]
if o.typespec in (str, int, bool):
t = o.typespec.__name__
elif o.typespec == typing.Optional[str]:
t = 'Union'
elif o.typespec == typing.Sequence[str]:
t = 'Sequence'
else:
raise NotImplementedError
t = typecheck.typespec_to_str(o.typespec)
option = {
'name': k,
'type': t,

View File

@ -98,3 +98,15 @@ def check_option_type(name: str, value: typing.Any, typeinfo: typing.Any) -> Non
return
elif not isinstance(value, typeinfo):
raise e
def typespec_to_str(typespec: typing.Any) -> str:
if typespec in (str, int, bool):
t = typespec.__name__
elif typespec == typing.Optional[str]:
t = 'Union'
elif typespec == typing.Sequence[str]:
t = 'Sequence'
else:
raise NotImplementedError
return t