Skip to content

Commit 45ee506

Browse files
author
hauntsaninja
committed
paramspecdef -> paramspectype
1 parent 7f10b71 commit 45ee506

7 files changed

+13
-13
lines changed

mypy/applytype.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def get_target_type(
1818
context: Context,
1919
skip_unsatisfied: bool
2020
) -> Optional[Type]:
21-
# TODO(shantanu): fix for ParamSpecDef
21+
# TODO(shantanu): fix for ParamSpecType
2222
assert isinstance(tvar, TypeVarType)
2323
values = get_proper_types(tvar.values)
2424
if values:

mypy/checkexpr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4450,7 +4450,7 @@ def merge_typevars_in_callables_by_name(
44504450
for tvdef in target.variables:
44514451
name = tvdef.fullname
44524452
if name not in unique_typevars:
4453-
# TODO(shantanu): fix for ParamSpecDef
4453+
# TODO(shantanu): fix for ParamSpecType
44544454
assert isinstance(tvdef, TypeVarType)
44554455
unique_typevars[name] = tvdef
44564456
variables.append(tvdef)

mypy/expandtype.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def freshen_function_type_vars(callee: F) -> F:
4040
tvdefs = []
4141
tvmap = {} # type: Dict[TypeVarId, Type]
4242
for v in callee.variables:
43-
# TODO(shantanu): fix for ParamSpecDef
43+
# TODO(shantanu): fix for ParamSpecType
4444
assert isinstance(v, TypeVarType)
4545
tvdef = TypeVarType.new_unification_variable(v)
4646
tvdefs.append(tvdef)

mypy/tvar_scope.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from typing import Optional, Dict, Union
2-
from mypy.types import TypeVarLikeType, TypeVarType, ParamSpecDef
2+
from mypy.types import TypeVarLikeType, TypeVarType, ParamSpecType
33
from mypy.nodes import ParamSpecExpr, TypeVarExpr, TypeVarLikeExpr, SymbolTableNode
44

55

@@ -74,7 +74,7 @@ def bind_new(self, name: str, tvar_expr: TypeVarLikeExpr) -> TypeVarLikeType:
7474
column=tvar_expr.column
7575
) # type: TypeVarLikeType
7676
elif isinstance(tvar_expr, ParamSpecExpr):
77-
tvar_def = ParamSpecDef(
77+
tvar_def = ParamSpecType(
7878
name,
7979
tvar_expr.fullname,
8080
i,

mypy/typeanal.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
CallableType, NoneType, ErasedType, DeletedType, TypeList, SyntheticTypeVisitor,
1717
StarType, PartialType, EllipsisType, UninhabitedType, TypeType,
1818
CallableArgument, TypeQuery, union_items, TypeOfAny, LiteralType, RawExpressionType,
19-
PlaceholderType, Overloaded, get_proper_type, TypeAliasType, TypeVarLikeType, ParamSpecDef
19+
PlaceholderType, Overloaded, get_proper_type, TypeAliasType, TypeVarLikeType, ParamSpecType
2020
)
2121

2222
from mypy.nodes import (
@@ -683,7 +683,7 @@ def analyze_callable_args_for_paramspec(
683683
if sym is None:
684684
return None
685685
tvar_def = self.tvar_scope.get_binding(sym)
686-
if not isinstance(tvar_def, ParamSpecDef):
686+
if not isinstance(tvar_def, ParamSpecType):
687687
return None
688688

689689
# TODO(shantanu): construct correct type for paramspec

mypy/typeops.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ def true_or_false(t: Type) -> ProperType:
475475

476476

477477
def erase_def_to_union_or_bound(tdef: TypeVarLikeType) -> Type:
478-
# TODO(shantanu): fix for ParamSpecDef
478+
# TODO(shantanu): fix for ParamSpecType
479479
assert isinstance(tdef, TypeVarType)
480480
if tdef.values:
481481
return make_simplified_union(tdef.values)

mypy/types.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ def deserialize(cls, data: JsonDict) -> 'TypeVarType':
417417
)
418418

419419

420-
class ParamSpecDef(TypeVarLikeType):
420+
class ParamSpecType(TypeVarLikeType):
421421
"""Definition of a single ParamSpec variable."""
422422

423423
def __repr__(self) -> str:
@@ -426,16 +426,16 @@ def __repr__(self) -> str:
426426
def serialize(self) -> JsonDict:
427427
assert not self.id.is_meta_var()
428428
return {
429-
'.class': 'ParamSpecDef',
429+
'.class': 'ParamSpecType',
430430
'name': self.name,
431431
'fullname': self.fullname,
432432
'id': self.id.raw_id,
433433
}
434434

435435
@classmethod
436-
def deserialize(cls, data: JsonDict) -> 'ParamSpecDef':
437-
assert data['.class'] == 'ParamSpecDef'
438-
return ParamSpecDef(
436+
def deserialize(cls, data: JsonDict) -> 'ParamSpecType':
437+
assert data['.class'] == 'ParamSpecType'
438+
return ParamSpecType(
439439
data['name'],
440440
data['fullname'],
441441
data['id'],

0 commit comments

Comments
 (0)