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

Method is_namedtuple

mypy/stubgen.py:1019–1020  ·  view source on GitHub ↗
(self, expr: CallExpr)

Source from the content-addressed store, hash-verified

1017 self._state = VAR
1018
1019 def is_namedtuple(self, expr: CallExpr) -> bool:
1020 return self.get_fullname(expr.callee) == "collections.namedtuple"
1021
1022 def is_typed_namedtuple(self, expr: CallExpr) -> bool:
1023 return self.get_fullname(expr.callee) in TYPED_NAMEDTUPLE_NAMES

Callers 3

get_base_typesMethod · 0.95
visit_assignment_stmtMethod · 0.95

Calls 1

get_fullnameMethod · 0.95

Tested by

no test coverage detected