Home
last modified time | relevance | path

Searched refs:_str_to_int (Results 1 – 5 of 5) sorted by relevance

/dports/devel/py-mypy/mypy-0.910/test-data/unit/plugins/
H A Dfunction_sig_hook.py10 def _str_to_int(api: CheckerPluginInterface, typ: Type) -> Type: function
15 return typ.copy_modified(args=[_str_to_int(api, t) for t in typ.args])
21 arg_types=[_str_to_int(ctx.api, t) for t in ctx.default_signature.arg_types],
22 ret_type=_str_to_int(ctx.api, ctx.default_signature.ret_type),
H A Dmethod_sig_hook.py14 def _str_to_int(api: CheckerPluginInterface, typ: Type) -> Type: function
19 return typ.copy_modified(args=[_str_to_int(api, t) for t in typ.args])
25 arg_types=[_str_to_int(ctx.api, t) for t in ctx.default_signature.arg_types],
26 ret_type=_str_to_int(ctx.api, ctx.default_signature.ret_type),
H A Dunion_method.py19 def _str_to_int(api: CheckerPluginInterface, typ: Type) -> Type: function
24 return typ.copy_modified(args=[_str_to_int(api, t) for t in typ.args])
39 arg_types=[_str_to_int(ctx.api, t) for t in ctx.default_signature.arg_types],
40 ret_type=_str_to_int(ctx.api, ctx.default_signature.ret_type),
/dports/net/ryu/ryu-4.26/ryu/tests/unit/lib/
H A Dtest_ofctl_action_match.py42 def _str_to_int(v):
70 return _str_to_int(value[0]), _str_to_int(value[1])
72 return _str_to_int(value), None
397 eq_(_str_to_int(value), field_value)
465 eq_(_str_to_int(value), field_value)
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/epydoc/
H A Dcli.py529 options.verbosity = _str_to_int(val, optname)
582 options.src_code_tab_width = _str_to_int(val, optname)
605 options.graph_font_size = _str_to_int(val, optname)
632 def _str_to_int(val, optname): function