MCPcopy Index your code
hub / github.com/python/cpython / next

Method next

Tools/clinic/libclinic/dsl_parser.py:535–542  ·  view source on GitHub ↗
(
            self,
            state: StateKeeper,
            line: str | None = None
    )

Source from the content-addressed store, hash-verified

533 return True
534
535 def next(
536 self,
537 state: StateKeeper,
538 line: str | None = None
539 ) -> None:
540 self.state = state
541 if line is not None:
542 self.state(line)
543
544 def state_dsl_start(self, line: str) -> None:
545 if not self.valid_line(line):

Callers 7

state_dsl_startMethod · 0.95
parse_cloned_functionMethod · 0.95
state_modulename_nameMethod · 0.95
state_parameterMethod · 0.95

Calls 1

stateMethod · 0.45

Tested by

no test coverage detected