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

Class EllipsisExpr

mypy/nodes.py:2351–2357  ·  view source on GitHub ↗

Ellipsis (...)

Source from the content-addressed store, hash-verified

2349
2350
2351class EllipsisExpr(Expression):
2352 """Ellipsis (...)"""
2353
2354 __slots__ = ()
2355
2356 def accept(self, visitor: ExpressionVisitor[T]) -> T:
2357 return visitor.visit_ellipsis(self)
2358
2359
2360class StarExpr(Expression):

Callers 5

visit_ConstantMethod · 0.90
visit_ellipsisMethod · 0.90
read_expressionFunction · 0.90
to_argumentMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…