MCPcopy Index your code
hub / github.com/python/mypy / convert_param_spec_expr

Function convert_param_spec_expr

mypy/exportjson.py:306–314  ·  view source on GitHub ↗
(self: ParamSpecExpr)

Source from the content-addressed store, hash-verified

304
305
306def convert_param_spec_expr(self: ParamSpecExpr) -> Json:
307 return {
308 ".class": "ParamSpecExpr",
309 "name": self._name,
310 "fullname": self._fullname,
311 "upper_bound": convert_type(self.upper_bound),
312 "default": convert_type(self.default),
313 "variance": self.variance,
314 }
315
316
317def convert_type_var_tuple_expr(self: TypeVarTupleExpr) -> Json:

Callers 1

convert_symbol_nodeFunction · 0.85

Calls 1

convert_typeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…