We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d7ace8 commit 8aed0b8Copy full SHA for 8aed0b8
Lib/asyncio/base_events.py
@@ -671,8 +671,8 @@ def _run_forever_cleanup(self):
671
672
def run_forever(self):
673
"""Run until stop() is called."""
674
+ self._run_forever_setup()
675
try:
- self._run_forever_setup()
676
while True:
677
self._run_once()
678
if self._stopping:
Lib/test/test_asyncio/test_base_events.py
@@ -2005,7 +2005,7 @@ async def stop_loop_coro(loop):
2005
2006
2007
class RunningLoopTests(unittest.TestCase):
2008
- @unittest.skip("skip")
+
2009
def test_running_loop_within_a_loop(self):
2010
async def runner(loop):
2011
loop.run_forever()
0 commit comments