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

Method parse_random_seed

Lib/test/test_regrtest.py:809–811  ·  view source on GitHub ↗
(self, output: str)

Source from the content-addressed store, hash-verified

807 self.check_line(output, f'Result: {state}', full=True)
808
809 def parse_random_seed(self, output: str) -> str:
810 match = self.regex_search(r'Using random seed: (.*)', output)
811 return match.group(1)
812
813 def run_command(self, args, input=None, exitcode=0, **kw):
814 if not input:

Callers 2

check_outputMethod · 0.80
test_randomMethod · 0.80

Calls 2

regex_searchMethod · 0.95
groupMethod · 0.45

Tested by

no test coverage detected