MCPcopy Index your code
hub / github.com/RustPython/RustPython / test_make_parser5

Method test_make_parser5

Lib/test/test_sax.py:293–301  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

291 make_parser(iter([]))
292
293 def test_make_parser5(self):
294 # Testing that make_parser can handle iterables with more than
295 # one item.
296 make_parser(['module1', 'module2'])
297 make_parser(('module1', 'module2'))
298 make_parser({'module1', 'module2'})
299 make_parser(frozenset({'module1', 'module2'}))
300 make_parser({'module1': None, 'module2': None})
301 make_parser(iter(['module1', 'module2']))
302
303# ===========================================================================
304#

Callers

nothing calls this directly

Calls 2

make_parserFunction · 0.90
iterFunction · 0.85

Tested by

no test coverage detected