Andrew Svetlov <[email protected]> added the comment:
Better to avoid _asyncio_internal if not strictly necessary. Currently, _asyncio_internal is used for protection of asyncio class direct instantiation. E.g. stream = asyncio.Stream() is forbidden, people should use factories like stream = await asyncio.connect(...) for it. ---------- _______________________________________ Python tracker <[email protected]> <https://bugs.python.org/issue36373> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
