MCPcopy Index your code
hub / github.com/python-websockets/websockets / assertGeneratorRunning

Method assertGeneratorRunning

tests/utils.py:76–81  ·  view source on GitHub ↗

Check that a generator-based coroutine hasn't completed yet.

(self, gen)

Source from the content-addressed store, hash-verified

74 """
75
76 def assertGeneratorRunning(self, gen):
77 """
78 Check that a generator-based coroutine hasn't completed yet.
79
80 """
81 next(gen)
82
83 def assertGeneratorReturns(self, gen):
84 """

Calls

no outgoing calls