You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fedora is starting to test building with Python 3.14.0a2. makefun fails to build with:
FAILED tests/test_generators_coroutines.py::test_native_coroutine -
RuntimeError: There is no current event loop in thread 'MainThread'.
FAILED tests/test_generators_coroutines.py::test_issue_96 - RuntimeError: There
is no current event loop in thread 'MainThread'.
FAILED tests/test_issues.py::test_issue_77_async_generator_wraps -
RuntimeError: There is no current event loop in thread 'MainThread'.
FAILED tests/test_issues.py::test_issue_77_async_generator_partial -
RuntimeError: There is no current event loop in thread 'MainThread'.
Removed implicit creation of event loop by asyncio.get_event_loop(). It now
raises a RuntimeError if there is no current event loop. (Contributed by Kumar
Aditya in gh-126353.)
The text was updated successfully, but these errors were encountered:
Fedora is starting to test building with Python 3.14.0a2. makefun fails to build with:
According to https://docs.python.org/dev/whatsnew/3.14.html#id3
Removed implicit creation of event loop by asyncio.get_event_loop(). It now
raises a RuntimeError if there is no current event loop. (Contributed by Kumar
Aditya in gh-126353.)
The text was updated successfully, but these errors were encountered: