Stack element in Repl._funcname_and_argnum
| 377 | |
| 378 | @dataclass |
| 379 | class _FuncExpr: |
| 380 | """Stack element in Repl._funcname_and_argnum""" |
| 381 | |
| 382 | full_expr: str |
| 383 | function_expr: str |
| 384 | arg_number: int |
| 385 | opening: str |
| 386 | keyword: str | None = None |
| 387 | |
| 388 | |
| 389 | class Repl(metaclass=abc.ABCMeta): |
no outgoing calls
no test coverage detected