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

Method test_make_parser4

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

Source from the content-addressed store, hash-verified

274 make_parser(iter(['module']))
275
276 def test_make_parser4(self):
277 # Testing that make_parser can handle empty iterables.
278 make_parser([])
279 make_parser(tuple())
280 make_parser(set())
281 make_parser(frozenset())
282 make_parser({})
283 make_parser(iter([]))
284
285 def test_make_parser5(self):
286 # Testing that make_parser can handle iterables with more than

Callers

nothing calls this directly

Calls 2

make_parserFunction · 0.90
setFunction · 0.85

Tested by

no test coverage detected