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

Method test_make_parser3

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

Source from the content-addressed store, hash-verified

264 p = make_parser()
265
266 def test_make_parser3(self):
267 # Testing that make_parser can handle different types of
268 # iterables.
269 make_parser(['module'])
270 make_parser(('module', ))
271 make_parser({'module'})
272 make_parser(frozenset({'module'}))
273 make_parser({'module': None})
274 make_parser(iter(['module']))
275
276 def test_make_parser4(self):
277 # Testing that make_parser can handle empty iterables.

Callers

nothing calls this directly

Calls 1

make_parserFunction · 0.90

Tested by

no test coverage detected