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

Method test_non_debug

Lib/test/test_asyncio/test_runners.py:289–291  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

287class RunnerTests(BaseTest):
288
289 def test_non_debug(self):
290 with asyncio.Runner(debug=False) as runner:
291 self.assertFalse(runner.get_loop().get_debug())
292
293 def test_debug(self):
294 with asyncio.Runner(debug=True) as runner:

Callers

nothing calls this directly

Calls 3

assertFalseMethod · 0.80
get_debugMethod · 0.45
get_loopMethod · 0.45

Tested by

no test coverage detected