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

Method visit_parameters

mypy/copytype.py:79–87  ·  view source on GitHub ↗
(self, t: Parameters)

Source from the content-addressed store, hash-verified

77 return self.copy_common(t, dup)
78
79 def visit_parameters(self, t: Parameters) -> ProperType:
80 dup = Parameters(
81 t.arg_types,
82 t.arg_kinds,
83 t.arg_names,
84 variables=t.variables,
85 is_ellipsis_args=t.is_ellipsis_args,
86 )
87 return self.copy_common(t, dup)
88
89 def visit_type_var_tuple(self, t: TypeVarTupleType) -> ProperType:
90 dup = TypeVarTupleType(

Callers

nothing calls this directly

Calls 2

copy_commonMethod · 0.95
ParametersClass · 0.90

Tested by

no test coverage detected