Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove implicit creation of event loop from asyncio.get_event_loop #126353

Closed
kumaraditya303 opened this issue Nov 3, 2024 · 6 comments
Closed
Labels
stdlib Python modules in the Lib dir topic-asyncio type-feature A feature request or enhancement

Comments

@kumaraditya303
Copy link
Contributor

kumaraditya303 commented Nov 3, 2024

Remove implicit creation of event loop from asyncio.get_event_loop as deprecated from Python 3.12.

Linked PRs

@kumaraditya303 kumaraditya303 added topic-asyncio 3.14 new features, bugs and security fixes labels Nov 3, 2024
@github-project-automation github-project-automation bot moved this to Todo in asyncio Nov 3, 2024
@picnixz picnixz added type-feature A feature request or enhancement and removed 3.14 new features, bugs and security fixes labels Nov 3, 2024
@picnixz
Copy link
Contributor

picnixz commented Nov 3, 2024

(FTR: type-feature automatically implies main: https://devguide.python.org/triage/labels/#type-labels)

@picnixz picnixz added the stdlib Python modules in the Lib dir label Nov 3, 2024
@itamaro
Copy link
Contributor

itamaro commented Nov 4, 2024

Is there a discussion somewhere about moving forward with this removal for 3.14? Is there a particular reason to move forward with this removal in 3.14, following the minimum deprecated->removed delay that the deprecation policy allows?

What are the downsides of deferring this removal a bit longer?

Even the docs are not prescriptive about the removal coming up in 3.14 :) :

...
In some future Python release this will become an error.

For context, while I'm generally in favor of acting on deprecations, I am somewhat concerned that this specific one will be quite disruptive.
I regularly come across code with plenty of bad patterns around asyncio usage, with the reliance on get_event_loop always returning a loop being one of the more common patterns. It could be beneficial to let the deprecation bake for several more releases before acting on the removal, unless there are other compelling reasons to go ahead with the removal sooner rather than later.

cc @fried maybe you can double check my concerns and let me know if I'm being too conservative with this one.

@hugovk
Copy link
Member

hugovk commented Nov 4, 2024

Searching the top 8k PyPI projects (downloaded April 2024) found 1,904 matching lines in 391 projects for asyncio.get_event_loop:

Details
python3 ~/github/misc/cpython/search_pypi_top.py -q . "asyncio.get_event_loop"
./a2wsgi-1.10.4.tar.gz: a2wsgi-1.10.4/a2wsgi/wsgi.py: self.loop = asyncio.get_event_loop()
./a2wsgi-1.10.4.tar.gz: a2wsgi-1.10.4/tests/test_wsgi.py: environ = build_environ(scope, Body(asyncio.get_event_loop(), receive))
./a2wsgi-1.10.4.tar.gz: a2wsgi-1.10.4/tests/test_wsgi.py: environ = build_environ(scope, Body(asyncio.get_event_loop(), receive))
./accelerate-0.29.2.tar.gz: accelerate-0.29.2/src/accelerate/test_utils/testing.py: loop = asyncio.get_event_loop()
./acryl-datahub-0.13.1.2.tar.gz: acryl-datahub-0.13.1.2/src/datahub/cli/ingest_cli.py: loop = asyncio.get_event_loop()
./dbt-duckdb-1.7.3.tar.gz: dbt-duckdb-1.7.3/dbt/adapters/duckdb/environments/__init__.py: loop = asyncio.get_event_loop()
./acryl-datahub-0.13.1.2.tar.gz: acryl-datahub-0.13.1.2/src/datahub/ingestion/source/identity/okta.py: event_loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./acryl-datahub-0.13.1.2.tar.gz: acryl-datahub-0.13.1.2/src/datahub/upgrade/upgrade.py: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/PKG-INFO: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/PKG-INFO: await asyncio.get_event_loop().create_future()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/PKG-INFO: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/README.md: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/README.md: await asyncio.get_event_loop().create_future()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/README.md: asyncio.get_event_loop().run_until_complete(main())
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/README.md: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/dbus_next/aio/message_bus.py: self._loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/dbus_next.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/dbus_next.egg-info/PKG-INFO: await asyncio.get_event_loop().create_future()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/dbus_next.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/dbus_next.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/test/service/test_properties.py: future = asyncio.get_event_loop().create_future()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/test/service/test_signals.py: self.future = asyncio.get_event_loop().create_future()
./dbus_next-0.2.3.tar.gz: dbus_next-0.2.3/test/service/test_signals.py: self.timeout_task = asyncio.get_event_loop().call_later(self.timeout, self.timeout_cb)
./aws-embedded-metrics-3.2.0.tar.gz: aws-embedded-metrics-3.2.0/aws_embedded_metrics/metric_scope/__init__.py: loop = asyncio.get_event_loop()
./apprise-1.7.6.tar.gz: apprise-1.7.6/apprise/plugins/NotifyBase.py: loop = asyncio.get_event_loop()
./apprise-1.7.6.tar.gz: apprise-1.7.6/test/test_asyncio.py: loop = asyncio.get_event_loop()
./apprise-1.7.6.tar.gz: apprise-1.7.6/test/test_asyncio.py: asyncio.get_event_loop()
./aws-parallelcluster-3.9.1.tar.gz: aws-parallelcluster-3.9.1/src/pcluster/config/common.py: asyncio.get_event_loop().run_until_complete(asyncio.gather(*self._validation_futures))
./APScheduler-3.10.4.tar.gz: APScheduler-3.10.4/apscheduler/schedulers/asyncio.py: self._eventloop = asyncio.get_event_loop()
./actions-toolkit-0.1.15.tar.gz: actions-toolkit-0.1.15/actions_toolkit/io_utils.py: loop = asyncio.get_event_loop()
./aws-parallelcluster-3.9.1.tar.gz: aws-parallelcluster-3.9.1/src/pcluster/utils.py: return await asyncio.get_event_loop().run_in_executor(
./aws-parallelcluster-3.9.1.tar.gz: aws-parallelcluster-3.9.1/src/pcluster/validators/common.py: asyncio.get_event_loop().run_until_complete(self._validate_async(*arg, **kwargs))
./aws-xray-sdk-2.13.0.tar.gz: aws-xray-sdk-2.13.0/aws_xray_sdk/core/async_context.py: self._loop = asyncio.get_event_loop()
./aws-xray-sdk-2.13.0.tar.gz: aws-xray-sdk-2.13.0/aws_xray_sdk/core/async_context.py: loop = asyncio.get_event_loop()
./aws_lambda_powertools-2.36.0.tar.gz: aws_lambda_powertools-2.36.0/aws_lambda_powertools/utilities/batch/base.py: loop = asyncio.get_event_loop()  # NOTE: this might return an error starting in Python 3.12 in a few years
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/ddtrace/contrib/asyncio/helpers.py: loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/ddtrace/contrib/asyncio/provider.py: return loop or asyncio.get_event_loop()
./adapter-transformers-3.2.1.post0.tar.gz: adapter-transformers-3.2.1.post0/src/transformers/testing_utils.py: loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/ddtrace/profiling/collector/_task.pyx: loop = _asyncio.get_event_loop_for_thread(thread_id)
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/ddtrace/profiling/collector/_task.pyx: loop = _asyncio.get_event_loop_for_thread(thread_id)
./beartype-0.18.2.tar.gz: beartype-0.18.2/beartype/_check/code/__init__.py: #        event_loop = asyncio.get_event_loop()
./adlfs-2024.4.0.tar.gz: adlfs-2024.4.0/adlfs/tests/conftest.py: policy = asyncio.get_event_loop_policy()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/tests/appsec/iast_tdd_propagation/tortoise_impl.py: loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/tests/contrib/asyncio/utils.py: self._main_loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/tests/contrib/asyncio/utils.py: loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/tests/contrib/asyncio/utils.py: loop = asyncio.get_event_loop()
./ddtrace-2.8.0.tar.gz: ddtrace-2.8.0/tests/contrib/grpc_aio/test_grpc_aio.py: asyncio.get_event_loop()
./beartype-0.18.2.tar.gz: beartype-0.18.2/beartype_test/conftest.py: # higher-level asyncio.get_event_loop() getter is intentionally
./beartype-0.18.2.tar.gz: beartype-0.18.2/beartype_test/conftest.py: # and thus asyncio.get_event_loop() is useless in this context.
./beartype-0.18.2.tar.gz: beartype-0.18.2/beartype_test/conftest.py: # asyncio.get_event_loop() used to wrap. *facepalm*
./arcgis-2.2.0.3.tar.gz: arcgis-2.2.0.3/arcgis/geoenrichment/_business_analyst/_main.py: loop = asyncio.get_event_loop()
./behave-1.2.6.tar.gz: behave-1.2.6/behave/api/async_step.py: loop = asyncio.get_event_loop() or asyncio.new_event_loop()
./behave-1.2.6.tar.gz: behave-1.2.6/behave/api/async_step.py: self.loop = loop or asyncio.get_event_loop() or asyncio.new_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/application.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/dump.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/stream.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/tone.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/util.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/cli/util.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/thread.py: current_loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/thread.py: current_loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/uart.py: self._reset_future = asyncio.get_event_loop().create_future()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/uart.py: self._pending = (seq, asyncio.get_event_loop().create_future())
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/uart.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/bellows/uart.py: application = ThreadsafeProxy(application, asyncio.get_event_loop())
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: current_loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: result = await asyncio.wrap_future(future, loop=asyncio.get_event_loop())
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: inner_loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: assert asyncio.get_event_loop() == thread.loop
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_thread.py: loop = asyncio.get_event_loop()
./bellows-0.38.1.tar.gz: bellows-0.38.1/tests/test_uart.py: future = asyncio.get_event_loop().create_future()
./chromadb-0.4.24.tar.gz: chromadb-0.4.24/chromadb/test/ingest/test_producer_consumer.py: self._loop = asyncio.get_event_loop()
./arch-6.3.0.tar.gz: arch-6.3.0/arch/tests/test_examples.py: asyncio.get_event_loop_policy(), WindowsSelectorEventLoopPolicy
./decopatch-1.4.10.tar.gz: decopatch-1.4.10/ci_tools/nox_utils.py: loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/abc.py: closing = asyncio.get_event_loop().create_future()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/channel.py: :param loop: Event loop (:func:`asyncio.get_event_loop()`
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/connection.py: self.loop = loop or asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/connection.py: Event loop (:func:`asyncio.get_event_loop()` when :class:`None`)
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/patterns/master.py: self.loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/patterns/rpc.py: self.loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/pool.py: self.loop = loop or asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/robust_channel.py: Event loop (:func:`asyncio.get_event_loop()` when :class:`None`)
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/robust_connection.py: Event loop (:func:`asyncio.get_event_loop()` when :class:`None`)
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/tools.py: loop = loop or asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/aio_pika/tools.py: self.loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/PKG-INFO: loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/PKG-INFO: loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/PKG-INFO: loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/PKG-INFO: loop = asyncio.get_event_loop()
./aio_pika-9.4.1.tar.gz: aio_pika-9.4.1/PKG-INFO: loop = asyncio.get_event_loop()
./aioboto3-12.3.0.tar.gz: aioboto3-12.3.0/aioboto3/s3/cse.py: self._loop = asyncio.get_event_loop()
./aioboto3-12.3.0.tar.gz: aioboto3-12.3.0/aioboto3/s3/cse.py: self._loop = asyncio.get_event_loop()
./aioboto3-12.3.0.tar.gz: aioboto3-12.3.0/aioboto3/s3/cse.py: self._loop = asyncio.get_event_loop()
./aioboto3-12.3.0.tar.gz: aioboto3-12.3.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiobotocore-2.12.3.tar.gz: aiobotocore-2.12.3/PKG-INFO: loop = asyncio.get_event_loop()
./aiobotocore-2.12.3.tar.gz: aiobotocore-2.12.3/aiobotocore.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/cli/client.py: observation_is_over = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/cli/client.py: interactive_expecting_keyboard_interrupt = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/cli/client.py: line = await asyncio.get_event_loop().run_in_executor(None, lambda: input("aiocoap> "))
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/cli/client.py: interactive_expecting_keyboard_interrupt = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/cli/client.py: loop = asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self.loop = loop or asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: loop = asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: loop = asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._future = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._future = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._future = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._future = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._trigger = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/protocol.py: self._trigger = asyncio.get_event_loop().create_future()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/aiocoap/proxy/server.py: asyncio.get_event_loop().call_soon(self._consider_dropping, clientobservationrequest)
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/contrib/aiocoap-kivy-widget: asyncio.get_event_loop().create_task(self.main())
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/contrib/aiocoap-kivy-widget: loop = asyncio.get_event_loop()
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/contrib/widgets_common/kivy_resource.py: asyncio.get_event_loop().create_task(self._monitor(throttler))
./aiocoap-0.4.7.tar.gz: aiocoap-0.4.7/server.py: self.handle = asyncio.get_event_loop().call_later(5, self.notify)
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/console.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/server.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/stream.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/stream.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/stream.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/stream.py: loop = asyncio.get_event_loop()
./aioconsole-0.7.0.tar.gz: aioconsole-0.7.0/aioconsole/stream.py: loop = asyncio.get_event_loop()
./aiocontextvars-0.2.2.tar.gz: aiocontextvars-0.2.2/aiocontextvars.py: _get_event_loop = asyncio.get_event_loop
./aiocontextvars-0.2.2.tar.gz: aiocontextvars-0.2.2/aiocontextvars.py: asyncio.get_event_loop = asyncio.events.get_event_loop = get_event_loop
./aiocontextvars-0.2.2.tar.gz: aiocontextvars-0.2.2/PKG-INFO: Because above hack is done by replacing ``asyncio.get_event_loop`` and
./aiocontextvars-0.2.2.tar.gz: aiocontextvars-0.2.2/aiocontextvars.egg-info/PKG-INFO: Because above hack is done by replacing ``asyncio.get_event_loop`` and
./aiodns-3.2.0.tar.gz: aiodns-3.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiodns-3.2.0.tar.gz: aiodns-3.2.0/aiodns/__init__.py: self.loop = loop or asyncio.get_event_loop()
./aiodns-3.2.0.tar.gz: aiodns-3.2.0/aiodns.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/aiodocker.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/docs/_build/html/_sources/index.rst.txt: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/examples/events.py: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/examples/info.py: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/examples/stdio_stdout.py: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/tests/conftest.py: event_loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/tests/conftest.py: event_loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/tests/test_events.py: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/tests/test_events.py: loop = asyncio.get_event_loop()
./aiodocker-0.21.0.tar.gz: aiodocker-0.21.0/tests/test_events.py: loop = asyncio.get_event_loop()
./aiodogstatsd-0.16.0.post0.tar.gz: aiodogstatsd-0.16.0.post0/aiodogstatsd/compat.py: return asyncio.get_event_loop
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/PKG-INFO: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/PKG-INFO: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi/_frame_helper/base.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi/client.py: self._loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi/connection.py: self._loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi/host_resolver.py: res = await asyncio.get_event_loop().getaddrinfo(
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi/reconnect_logic.py: self.loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/aioesphomeapi.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test__frame_helper.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test__frame_helper.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test__frame_helper.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_client.py: asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_connection.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_log_runner.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_log_runner.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_log_runner.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_reconnect_logic.py: loop = asyncio.get_event_loop()
./aioesphomeapi-24.0.0.tar.gz: aioesphomeapi-24.0.0/tests/test_reconnect_logic.py: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile/aio.py: return asyncio.get_event_loop().create_task(self.close())
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile/aio.py: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile/aio.py: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiofile-3.8.8.tar.gz: aiofile-3.8.8/aiofile.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiofiles-23.2.1.tar.gz: aiofiles-23.2.1/README.md: - Transition to `asyncio.get_running_loop` (vs `asyncio.get_event_loop`) internally.
./aiofiles-23.2.1.tar.gz: aiofiles-23.2.1/PKG-INFO: - Transition to `asyncio.get_running_loop` (vs `asyncio.get_event_loop`) internally.
./aiogram-3.4.1.tar.gz: aiogram-3.4.1/aiogram/dispatcher/event/handler.py: loop = asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/serve.py: loop = asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/serve.py: loop = asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/marshal/dispatcher.py: return asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/runner/runner_handle/remote.py: self._loop = asyncio.get_event_loop()  # get the loop lazily
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/server/grpc_app.py: return asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/utils/benchmark.py: self.user_pool.append(asyncio.get_event_loop().create_task(self._start()))
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/utils/benchmark.py: asyncio.get_event_loop().create_task(
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/utils/benchmark.py: asyncio.get_event_loop().create_task(self._start_output())
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/utils/benchmark.py: loop = asyncio.get_event_loop()
./bentoml-1.2.11.tar.gz: bentoml-1.2.11/src/bentoml/_internal/utils/benchmark.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/client_reqrep.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/compression_utils.py: return await asyncio.get_event_loop().run_in_executor(
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/compression_utils.py: return await asyncio.get_event_loop().run_in_executor(
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/helpers.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/payload.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/payload.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_fileresponse.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_fileresponse.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/web_runner.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/worker.py: asyncio.get_event_loop().close()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/worker.py: asyncio.get_event_loop().close()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/aiohttp/worker.py: # asyncio.get_event_loop() will create an instance
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/examples/client_auth.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/examples/client_json.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/examples/curl.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/examples/fake_server.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/examples/lowlevel_srv.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_base_protocol.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_session.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_client_ws_functional.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_connector.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_connector.py: aiohttp.NamedPipeConnector(pipe_name, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_http_parser.py: stream, 2**16, loop=asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_loop.py: self.assertIs(self.loop, asyncio.get_event_loop_policy().get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_loop.py: assert asyncio.get_event_loop_policy().get_event_loop() is loop
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_loop.py: assert asyncio.get_event_loop_policy().get_event_loop() is loop
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_multipart.py: stream = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_payload.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_run_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_run_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_run_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_streams.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop=asyncio.get_event_loop(),
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop=asyncio.get_event_loop(),
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop=asyncio.get_event_loop(),
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: loop=asyncio.get_event_loop(),
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_app.py: fut = asyncio.get_event_loop().create_future()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_functional.py: asyncio.get_event_loop().set_debug(True)
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_functional.py: asyncio.get_event_loop().set_debug(True)
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: payload = StreamReader(protocol, 2**16, loop=asyncio.get_event_loop())
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_request.py: loop = asyncio.get_event_loop()
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_web_runner.py: with patch("asyncio.get_event_loop") as mock_get_loop:
./aiohttp-3.9.4.tar.gz: aiohttp-3.9.4/tests/test_worker.py: assert m_asyncio.get_event_loop.return_value.close.called
./aiohttp-cors-0.7.0.tar.gz: aiohttp-cors-0.7.0/tests/integration/test_real_browser.py: self.loop = asyncio.get_event_loop()
./aiohttp-cors-0.7.0.tar.gz: aiohttp-cors-0.7.0/tests/integration/test_real_browser.py: loop = asyncio.get_event_loop()
./aiohttp-cors-0.7.0.tar.gz: aiohttp-cors-0.7.0/tests/integration/test_real_browser.py: loop = asyncio.get_event_loop()
./aiohttp_socks-0.8.4.tar.gz: aiohttp_socks-0.8.4/aiohttp_socks/utils.py: loop = asyncio.get_event_loop()
./aiohttp_socks-0.8.4.tar.gz: aiohttp_socks-0.8.4/aiohttp_socks/utils.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/PKG-INFO: asyncio.get_event_loop().run_until_complete(connect_using_ice())
./aioice-0.9.0.tar.gz: aioice-0.9.0/examples/ice-client.py: asyncio.get_event_loop().run_until_complete(offer(options))
./aioice-0.9.0.tar.gz: aioice-0.9.0/examples/ice-client.py: asyncio.get_event_loop().run_until_complete(answer(options))
./aioice-0.9.0.tar.gz: aioice-0.9.0/examples/signaling-server.py: asyncio.get_event_loop().run_until_complete(websockets.serve(echo, "0.0.0.0", 8765))
./aioice-0.9.0.tar.gz: aioice-0.9.0/examples/signaling-server.py: asyncio.get_event_loop().run_forever()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/ice.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/ice.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/ice.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/mdns.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/stun.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/turn.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice/turn.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/src/aioice.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(connect_using_ice())
./aioice-0.9.0.tar.gz: aioice-0.9.0/tests/echoserver.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/tests/turnserver.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/tests/turnserver.py: loop = asyncio.get_event_loop()
./aioice-0.9.0.tar.gz: aioice-0.9.0/tests/turnserver.py: loop = asyncio.get_event_loop()
./aioitertools-0.11.0.tar.gz: aioitertools-0.11.0/aioitertools/more_itertools.py: transition = asyncio.get_event_loop().create_future()
./aiojobs-1.2.1.tar.gz: aiojobs-1.2.1/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./aiojobs-1.2.1.tar.gz: aiojobs-1.2.1/aiojobs.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./couchbase-4.2.0.tar.gz: couchbase-4.2.0/acouchbase/__init__.py: evloop = asyncio.get_event_loop()
./couchbase-4.2.0.tar.gz: couchbase-4.2.0/acouchbase/__init__.py: evloop = asyncio.get_event_loop()
./aiokafka-0.10.0.tar.gz: aiokafka-0.10.0/aiokafka/util.py: loop = asyncio.get_event_loop()
./aiomultiprocess-0.9.0.tar.gz: aiomultiprocess-0.9.0/README.md: # loop = asyncio.get_event_loop()
./aiomultiprocess-0.9.0.tar.gz: aiomultiprocess-0.9.0/aiomultiprocess/tests/base.py: _loop = asyncio.get_event_loop()
./aiomultiprocess-0.9.0.tar.gz: aiomultiprocess-0.9.0/aiomultiprocess/tests/base.py: loop = asyncio.get_event_loop()
./aiomultiprocess-0.9.0.tar.gz: aiomultiprocess-0.9.0/aiomultiprocess/tests/base.py: loop = asyncio.get_event_loop()
./aiomultiprocess-0.9.0.tar.gz: aiomultiprocess-0.9.0/aiomultiprocess/tests/pool.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/aiomysql/connection.py: self._loop = loop or asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/aiomysql/pool.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/aiomysql/sa/engine.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/aiomysql.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/aiomysql.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_callproc.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_callproc_oldstyle.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_cursors.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_executemany.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_executemany_oldstyle.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_oldstyle.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_pool.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_pool_oldstyle.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_simple_sa.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_simple_sa_oldstyle.py: asyncio.get_event_loop().run_until_complete(go())
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_ssl.py: asyncio.get_event_loop().run_until_complete(main())
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_transaction.py: loop = asyncio.get_event_loop()
./aiomysql-0.2.0.tar.gz: aiomysql-0.2.0/examples/example_transaction_oldstyle.py: loop = asyncio.get_event_loop()
./couchbase-4.2.0.tar.gz: couchbase-4.2.0/couchbase/transactions/transaction_query_results.py: self._loop = asyncio.get_event_loop()
./aioodbc-0.5.0.tar.gz: aioodbc-0.5.0/aioodbc/__init__.py: loop = asyncio.get_event_loop()
./aioodbc-0.5.0.tar.gz: aioodbc-0.5.0/aioodbc/connection.py: self._loop = asyncio.get_event_loop()
./aioodbc-0.5.0.tar.gz: aioodbc-0.5.0/aioodbc/pool.py: self._loop = asyncio.get_event_loop()
./aioodbc-0.5.0.tar.gz: aioodbc-0.5.0/tests/conftest.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./aiopg-1.4.0.tar.gz: aiopg-1.4.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiopg-1.4.0.tar.gz: aiopg-1.4.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiopg-1.4.0.tar.gz: aiopg-1.4.0/aiopg/utils.py: loop = asyncio.get_event_loop()
./aiopg-1.4.0.tar.gz: aiopg-1.4.0/aiopg.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiopg-1.4.0.tar.gz: aiopg-1.4.0/aiopg.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/examples/interop.py: loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/examples/interop.py: loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/src/aioquic/asyncio/client.py: loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/src/aioquic/asyncio/protocol.py: loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/src/aioquic/asyncio/server.py: self._loop = asyncio.get_event_loop()
./aioquic-1.0.0.tar.gz: aioquic-1.0.0/src/aioquic/asyncio/server.py: loop = asyncio.get_event_loop()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/client.py: asyncio.get_event_loop().call_exception_handler(context)
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/client.py: and asyncio.get_event_loop().time() > conn.next_health_check
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/connection.py: loop = asyncio.get_event_loop()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/connection.py: and asyncio.get_event_loop().time() > self.next_health_check
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/connection.py: asyncio.get_event_loop().time() + self.health_check_interval
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/aioredis/lock.py: loop = asyncio.get_event_loop()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/conftest.py: info = asyncio.get_event_loop().run_until_complete(_get_info(redis_url))
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: start = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: assert asyncio.get_event_loop().time() - start >= 0.1
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: start = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: assert asyncio.get_event_loop().time() - start >= 0.1
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: diff = connection.next_health_check - asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: r.connection.next_health_check = asyncio.get_event_loop().time() - 1
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_connection_pool.py: r.connection.next_health_check = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_lock.py: start = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_lock.py: assert bt > (asyncio.get_event_loop().time() - start) > bt - sleep
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_lock.py: start = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_lock.py: assert bt > (asyncio.get_event_loop().time() - start)
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_multiprocessing.py: asyncio.get_event_loop().run_until_complete(atarget(conn))
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_multiprocessing.py: asyncio.get_event_loop().run_until_complete(conn.send_command("ping"))
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_multiprocessing.py: asyncio.get_event_loop().run_until_complete(atarget(pool))
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_multiprocessing.py: asyncio.get_event_loop().run_until_complete(atarget(pool, disconnect_event))
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_multiprocessing.py: run = asyncio.get_event_loop().run_until_complete
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_pubsub.py: now = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_pubsub.py: now = asyncio.get_event_loop().time()
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_pubsub.py: task = asyncio.get_event_loop().create_task(p.run())
./aioredis-2.0.1.tar.gz: aioredis-2.0.1/tests/test_pubsub.py: task = asyncio.get_event_loop().create_task(
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/aioresponses.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aioresponses-0.7.6.tar.gz: aioresponses-0.7.6/tests/base.py: self.loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/aiormq/connection.py: self._loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/aiormq/connection.py: super().__init__(loop=loop or asyncio.get_event_loop(), parent=None)
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/aiormq/tools.py: self.loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiormq-6.8.0.tar.gz: aiormq-6.8.0/PKG-INFO: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/datachannel-cli/cli.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/datachannel-filexfer/filexfer.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/datachannel-vpn/vpn.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/datachannel-vpn/vpn.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/janus/janus.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/examples/videostream-cli/cli.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/src/aiortc/contrib/media.py: asyncio.get_event_loop(),
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/src/aiortc/contrib/signaling.py: loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/src/aiortc/rtcrtpreceiver.py: asyncio.get_event_loop(),
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/src/aiortc/rtcrtpsender.py: self.__loop = asyncio.get_event_loop()
./aiortc-1.8.0.tar.gz: aiortc-1.8.0/src/aiortc/rtcsctptransport.py: self._loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/examples/echo_client.py: asyncio.get_event_loop().stop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/tests/test_posix.py: loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/tests/test_posix.py: loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/tests/test_stop_on_errors.py: loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/tests/test_stop_on_errors.py: loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/tests/test_stop_on_errors.py: loop = asyncio.get_event_loop()
./aiorun-2023.7.2.tar.gz: aiorun-2023.7.2/PKG-INFO: asyncio.get_event_loop().stop()  # Exit after one msg like original
./aiorwlock-1.4.0.tar.gz: aiorwlock-1.4.0/aiorwlock/__init__.py: loop = asyncio.get_event_loop()
./aiorwlock-1.4.0.tar.gz: aiorwlock-1.4.0/tests/test_rwlock.py: self._loop = asyncio.get_event_loop()
./aioshutil-1.3.tar.gz: aioshutil-1.3/aioshutil/__init__.py: loop = asyncio.get_event_loop()
./aiosmtpd-1.4.5.tar.gz: aiosmtpd-1.4.5/aiosmtpd/__init__.py: loop = asyncio.get_event_loop()
./aiosmtpd-1.4.5.tar.gz: aiosmtpd-1.4.5/aiosmtpd/tests/conftest.py: default_loop = asyncio.get_event_loop()
./aiosmtpd-1.4.5.tar.gz: aiosmtpd-1.4.5/aiosmtpd/tests/test_main.py: assert asyncio.get_event_loop().get_debug()
./aiosmtpd-1.4.5.tar.gz: aiosmtpd-1.4.5/aiosmtpd/tests/test_misc.py: loop = asyncio.get_event_loop()
./aiosmtplib-3.0.1.tar.gz: aiosmtplib-3.0.1/aiosmtplib/protocol.py: self._loop = asyncio.get_event_loop()
./aiosmtplib-3.0.1.tar.gz: aiosmtplib-3.0.1/aiosmtplib/smtp.py: >>> event_loop = asyncio.get_event_loop()
./aiosmtplib-3.0.1.tar.gz: aiosmtplib-3.0.1/aiosmtplib/smtp.py: >>> event_loop = asyncio.get_event_loop()
./aiosmtplib-3.0.1.tar.gz: aiosmtplib-3.0.1/tests/conftest.py: original_event_loop_policy = asyncio.get_event_loop_policy()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/aiosocks.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/aiosocks.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/aiosocks/__init__.py: loop = loop or asyncio.get_event_loop()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/aiosocks/protocols.py: self._loop = loop or asyncio.get_event_loop()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/PKG-INFO: loop = asyncio.get_event_loop()
./aiosocks-0.2.6.tar.gz: aiosocks-0.2.6/PKG-INFO: loop = asyncio.get_event_loop()
./aiosqlite-0.20.0.tar.gz: aiosqlite-0.20.0/aiosqlite/core.py: future = asyncio.get_event_loop().create_future()
./aiosqlite-0.20.0.tar.gz: aiosqlite-0.20.0/aiosqlite/core.py: future = asyncio.get_event_loop().create_future()
./aiostream-0.5.2.tar.gz: aiostream-0.5.2/PKG-INFO: loop = asyncio.get_event_loop()
./aiostream-0.5.2.tar.gz: aiostream-0.5.2/aiostream/stream/time.py: loop = asyncio.get_event_loop()
./aiostream-0.5.2.tar.gz: aiostream-0.5.2/aiostream/test_utils.py: loop = asyncio.get_event_loop()
./aiostream-0.5.2.tar.gz: aiostream-0.5.2/aiostream.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiotask_context-0.6.1.tar.gz: aiotask_context-0.6.1/README.md: loop = asyncio.get_event_loop()
./aiounittest-1.4.2.tar.gz: aiounittest-1.4.2/aiounittest/case.py: self.my_loop = asyncio.get_event_loop()
./aiounittest-1.4.2.tar.gz: aiounittest-1.4.2/aiounittest/helpers.py: old_loop = asyncio.get_event_loop()
./cloud-sql-python-connector-1.8.0.tar.gz: cloud-sql-python-connector-1.8.0/google/cloud/sql/connector/rate_limiter.py: self._loop = loop or asyncio.get_event_loop()
./airbyte_cdk-0.81.4.tar.gz: airbyte_cdk-0.81.4/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py: loop = asyncio.get_event_loop()
./cloudfoundry-client-1.36.0.tar.gz: cloudfoundry-client-1.36.0/PKG-INFO: loop = asyncio.get_event_loop()
./cloudfoundry-client-1.36.0.tar.gz: cloudfoundry-client-1.36.0/cloudfoundry_client.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./asgi-lifespan-2.1.0.tar.gz: asgi-lifespan-2.1.0/src/asgi_lifespan/_concurrency/asyncio.py: loop = asyncio.get_event_loop()
./asgiref-3.8.1.tar.gz: asgiref-3.8.1/asgiref/server.py: event_loop = asyncio.get_event_loop()
./ajsonrpc-1.2.0.tar.gz: ajsonrpc-1.2.0/ajsonrpc/scripts/server.py: loop = asyncio.get_event_loop()
./dnspython-2.6.1.tar.gz: dnspython-2.6.1/dns/_asyncio_backend.py: return asyncio.get_event_loop()
./dnspython-2.6.1.tar.gz: dnspython-2.6.1/tests/nanoquic.py: loop = asyncio.get_event_loop()
./dnspython-2.6.1.tar.gz: dnspython-2.6.1/tests/test_xfr.py: loop = asyncio.get_event_loop()
./alexapy-1.27.10.tar.gz: alexapy-1.27.10/alexapy/alexahttp2.py: loop if loop else asyncio.get_event_loop()
./alexapy-1.27.10.tar.gz: alexapy-1.27.10/alexapy/alexawebsocket.py: loop = asyncio.get_event_loop()
./cognite_sdk-7.34.0.tar.gz: cognite_sdk-7.34.0/cognite/client/_api/transformations/__init__.py: >>> loop = asyncio.get_event_loop()
./azure-ai-language-questionanswering-1.1.0.zip: azure-ai-language-questionanswering-1.1.0/samples/authoring/async_samples/sample_create_and_deploy_project_async.py: loop = asyncio.get_event_loop()
./azure-ai-language-questionanswering-1.1.0.zip: azure-ai-language-questionanswering-1.1.0/samples/authoring/async_samples/sample_export_import_project_async.py: loop = asyncio.get_event_loop()
./azure-ai-language-questionanswering-1.1.0.zip: azure-ai-language-questionanswering-1.1.0/samples/authoring/async_samples/sample_update_knowledge_sources_async.py: loop = asyncio.get_event_loop()
./colcon-core-0.16.1.tar.gz: colcon-core-0.16.1/colcon_core/subprocess.py: loop = asyncio.get_event_loop()
./alpaca_py-0.20.3.tar.gz: alpaca_py-0.20.3/alpaca/common/websocket.py: asyncio.get_event_loop().run_until_complete(
./black-24.4.0.tar.gz: black-24.4.0/CHANGES.md: - Change from deprecated `asyncio.get_event_loop()` to create our event loop which
./black-24.4.0.tar.gz: black-24.4.0/src/blackd/__init__.py: loop = asyncio.get_event_loop()
./black-24.4.0.tar.gz: black-24.4.0/src/blackd/__init__.py: loop = asyncio.get_event_loop()
./black-24.4.0.tar.gz: black-24.4.0/tests/test_black.py: policy = asyncio.get_event_loop_policy()
./black-24.4.0.tar.gz: black-24.4.0/PKG-INFO: - Change from deprecated `asyncio.get_event_loop()` to create our event loop which
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/PKG-INFO: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/async_timeout.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: assert t._loop is asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async-timeout-4.0.3.tar.gz: async-timeout-4.0.3/tests/test_timeout.py: loop = asyncio.get_event_loop()
./async_exit_stack-1.0.1.tar.gz: async_exit_stack-1.0.1/tests/test_async_exit_stack.py: loop = asyncio.get_event_loop()
./asynch-0.2.3.tar.gz: asynch-0.2.3/asynch/pool.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/hello_coroutine.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/timing_tcp_server.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/subprocess_shell.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/subprocess_attach_write_pipe.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/tcp_echo.py: self.h_timeout = asyncio.get_event_loop().call_later(
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/tcp_echo.py: self.h_timeout = asyncio.get_event_loop().call_later(
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/tcp_echo.py: asyncio.get_event_loop().call_later(10.0, self.transport.close)
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/tcp_echo.py: asyncio.get_event_loop().stop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/tcp_echo.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/fuzz_as_completed.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/child_process.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/child_process.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/child_process.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/subprocess_attach_read_pipe.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/echo_server_tulip.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/crawl.py: self.loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/crawl.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/echo_client_tulip.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/hello_callback.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/shell.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/udp_echo.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/udp_echo.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/examples/simple_tcp_server.py: loop = asyncio.get_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_base_events.py: 'loop = asyncio.get_event_loop()',
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_events.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_events.py: policy = asyncio.get_event_loop_policy()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_events.py: self.assertIs(policy, asyncio.get_event_loop_policy())
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_events.py: old_policy = asyncio.get_event_loop_policy()
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_events.py: self.assertIs(policy, asyncio.get_event_loop_policy())
./asyncio-3.4.3.tar.gz: asyncio-3.4.3/tests/test_subprocess.py: policy = asyncio.get_event_loop_policy()
./asyncio-nats-client-0.11.5.tar.gz: asyncio-nats-client-0.11.5/nats/aio/client.py: self._loop = io_loop or loop or asyncio.get_event_loop()
./asyncio-throttle-1.0.2.tar.gz: asyncio-throttle-1.0.2/PKG-INFO: loop = asyncio.get_event_loop()
./asyncio-throttle-1.0.2.tar.gz: asyncio-throttle-1.0.2/README.md: loop = asyncio.get_event_loop()
./asyncio-throttle-1.0.2.tar.gz: asyncio-throttle-1.0.2/asyncio_throttle.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/PKG-INFO: loop = asyncio.get_event_loop()
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connect_utils.py: loop = asyncio.get_event_loop()
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: >>> asyncio.get_event_loop().run_until_complete(run())
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/connection.py: loop = asyncio.get_event_loop()
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg/pool.py: loop = asyncio.get_event_loop()
./asyncpg-0.29.0.tar.gz: asyncpg-0.29.0/asyncpg.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/PKG-INFO: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh/connection.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/asyncssh.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/callback_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/callback_client2.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/callback_client3.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/callback_math_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/chat_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/check_exit_status.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/chroot_sftp_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/direct_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/direct_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/editor.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/gather_results.py: asyncio.get_event_loop().run_until_complete(run_multiple_clients())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/listening_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/local_forwarding_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/local_forwarding_client2.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/local_forwarding_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/math_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/math_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/redirect_input.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/redirect_local_pipe.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/redirect_remote_pipe.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/redirect_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/remote_forwarding_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/remote_forwarding_client2.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/remote_forwarding_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/reverse_client.py: asyncio.get_event_loop().run_until_complete(run_reverse_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/reverse_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/scp_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/set_environment.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/set_terminal.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/sftp_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/show_environment.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/show_terminal.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_cert_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_keyed_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_scp_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/simple_sftp_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/stream_direct_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/stream_direct_server.py: loop = asyncio.get_event_loop()
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/examples/stream_listening_client.py: asyncio.get_event_loop().run_until_complete(run_client())
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/tests/test_channel.py: asyncio.get_event_loop().call_later(0.1, self._report_response, True)
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/tests/test_channel.py: chan = _ServerChannel(self._conn, asyncio.get_event_loop(),
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/tests/test_x11.py: _, auth_data = await lookup_xauth(asyncio.get_event_loop(),
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/tests/test_x11.py: _, auth_data = await lookup_xauth(asyncio.get_event_loop(),
./asyncssh-2.14.2.tar.gz: asyncssh-2.14.2/tests/test_x11.py: _, auth_data = await lookup_xauth(asyncio.get_event_loop(),
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: :meth:`asyncio.get_event_loop()` instead of creating a new loop for each test.
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: "asyncio.get_event_loop() must not be called")
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: a call to :func:`asyncio.get_event_loop()` will raise an
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: :func:`asyncio.get_event_loop()` from a callback or a coroutine will return
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: #: loop returned by :func:`asyncio.get_event_loop()`. The loop will not be
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: #: If true, the value returned by :func:`asyncio.get_event_loop()` will be
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: self.loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: policy = _Policy(asyncio.get_event_loop_policy(),
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/case.py: policy = asyncio.get_event_loop_policy()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/mock.py: yield from asyncio.get_event_loop().sleep(1)
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/asynctest/mock.py: yield from asyncio.get_event_loop().sleep(1)
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(default_loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: policy = asyncio.get_event_loop_policy()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(self.loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(a_loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(a_loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(default_loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_case.py: self.assertIs(default_loop, asyncio.get_event_loop())
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asynctest-0.13.0.tar.gz: asynctest-0.13.0/test/test_mock.py: loop = asyncio.get_event_loop()
./asyncua-1.1.0.tar.gz: asyncua-1.1.0/asyncua/server/address_space.py: res = await asyncio.get_event_loop().run_in_executor(self._pool, p)
./atlassian-jwt-auth-18.0.1.tar.gz: atlassian-jwt-auth-18.0.1/atlassian_jwt_auth/contrib/aiohttp/key.py: loop = asyncio.get_event_loop()
./atlassian-jwt-auth-18.0.1.tar.gz: atlassian-jwt-auth-18.0.1/atlassian_jwt_auth/contrib/tests/aiohttp/test_verifier.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/component.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/component.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/component.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/wamp.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/wamp.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/wamp.py: loop = asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/websocket.py: self.loop = loop or asyncio.get_event_loop()
./autobahn-23.6.2.tar.gz: autobahn-23.6.2/autobahn/asyncio/websocket.py: self.loop = loop or asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/src/autocommand/autoasync.py: is None (the default), the loop is retreived using asyncio.get_event_loop.
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: asyncio.get_event_loop() for the duration of the context)
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: old_loop = asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: asyncio.get_event_loop() will return this loop within this fixture. Restore
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: assert async_main() is asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: assert loop is asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: assert loop is asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: assert passed_loop is asyncio.get_event_loop()
./autocommand-2.2.2.tar.gz: autocommand-2.2.2/test/test_autoasync.py: assert passed_loop is not asyncio.get_event_loop()
./Django-5.0.4.tar.gz: Django-5.0.4/tests/asgi/tests.py: loop = asyncio.get_event_loop()
./curl_cffi-0.6.2.tar.gz: curl_cffi-0.6.2/tests/unittest/conftest.py: loop = asyncio.get_event_loop()
./contextlib2-21.6.0.tar.gz: contextlib2-21.6.0/test/test_contextlib_async.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./bokeh-3.4.1.tar.gz: bokeh-3.4.1/src/bokeh/util/tornado.py: if type(asyncio.get_event_loop_policy()) is asyncio.WindowsProactorEventLoopPolicy:
./cwl-utils-0.33.tar.gz: cwl-utils-0.33/cwl_utils/expression.py: return asyncio.get_event_loop().run_until_complete(
./cwl-utils-0.33.tar.gz: cwl-utils-0.33/cwl_utils/expression.py: return asyncio.get_event_loop().run_until_complete(
./edge-tts-6.1.10.tar.gz: edge-tts-6.1.10/src/edge_tts/util.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./Cython-3.0.10.tar.gz: Cython-3.0.10/tests/run/asyncio_generators.srctree: new_event_loop = asyncio.new_event_loop if sys.version_info >= (3, 5) else asyncio.get_event_loop
./Cython-3.0.10.tar.gz: Cython-3.0.10/tests/run/asyncio_generators.srctree: new_event_loop = asyncio.new_event_loop if sys.version_info >= (3, 5) else asyncio.get_event_loop
./Cython-3.0.10.tar.gz: Cython-3.0.10/tests/run/asyncio_generators.srctree: new_event_loop = asyncio.new_event_loop if sys.version_info >= (3, 5) else asyncio.get_event_loop
./azure-communication-email-1.0.0.zip: azure-communication-email-1.0.0/tests/_shared/asynctestcase.py: loop = asyncio.get_event_loop()
./azure-core-1.30.1.tar.gz: azure-core-1.30.1/tests/async_tests/test_basic_transport_async.py: loop = asyncio.get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/cloud/common/plugins/module_utils/turbo/server.py: self.loop = asyncio.get_event_loop()
./feapder-1.9.0.tar.gz: feapder-1.9.0/feapder/utils/tools.py: loop = asyncio.get_event_loop()
./elasticsearch7-7.17.9.tar.gz: elasticsearch7-7.17.9/elasticsearch7/_async/compat.py: loop = asyncio.get_event_loop()
./dagster-1.7.1.tar.gz: dagster-1.7.1/dagster/_core/storage/upath_io_manager.py: awaited_objects = asyncio.get_event_loop().run_until_complete(collect())
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/README.md: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/README.md: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/README.md: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/README.md: loop = asyncio.get_event_loop()
./dagster-graphql-1.7.1.tar.gz: dagster-graphql-1.7.1/dagster_graphql/implementation/execution/__init__.py: loop = asyncio.get_event_loop()
./dagster-graphql-1.7.1.tar.gz: dagster-graphql-1.7.1/dagster_graphql/implementation/execution/__init__.py: loop = asyncio.get_event_loop()
./dagster-graphql-1.7.1.tar.gz: dagster-graphql-1.7.1/dagster_graphql/implementation/execution/__init__.py: loop = asyncio.get_event_loop()
./dagster-graphql-1.7.1.tar.gz: dagster-graphql-1.7.1/dagster_graphql/schema/external.py: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/azure_eventhub.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/azure_eventhub.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/azure_eventhub.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/azure_eventhub.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/migration_guide.md: loop = asyncio.get_event_loop()
./azure-eventhub-5.11.7.tar.gz: azure-eventhub-5.11.7/migration_guide.md: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/README.md: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/samples/receive_events_using_checkpoint_store_async.py: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/samples/receive_events_using_checkpoint_store_storage_api_version_async.py: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/azure_eventhub_checkpointstoreblob_aio.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/tests/test_storage_blob_partition_manager_aio.py: loop = asyncio.get_event_loop()
./azure-eventhub-checkpointstoreblob-aio-1.1.4.zip: azure-eventhub-checkpointstoreblob-aio-1.1.4/tests/test_storage_blob_partition_manager_aio.py: loop = asyncio.get_event_loop()
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: response = asyncio.get_event_loop().run_until_complete(
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: asyncio.get_event_loop().run_until_complete(
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: asyncio.get_event_loop().run_until_complete(
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: asyncio.get_event_loop().run_until_complete(
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: asyncio.get_event_loop().run_until_complete(
./azure-functions-1.19.0.tar.gz: azure-functions-1.19.0/tests/test_http_asgi.py: asyncio.get_event_loop().run_until_complete(
./daphne-4.1.2.tar.gz: daphne-4.1.2/daphne/server.py: asyncio.get_event_loop().set_debug(True)
./daphne-4.1.2.tar.gz: daphne-4.1.2/daphne/server.py: loop=asyncio.get_event_loop(),
./cached-property-1.5.2.tar.gz: cached-property-1.5.2/PKG-INFO: >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())
./cached-property-1.5.2.tar.gz: cached-property-1.5.2/cached_property.egg-info/PKG-INFO: >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())
./cached-property-1.5.2.tar.gz: cached-property-1.5.2/tests/test_async_cached_property.py: loop = asyncio.get_event_loop()
./cached-property-1.5.2.tar.gz: cached-property-1.5.2/tests/test_coroutine_cached_property.py: loop = asyncio.get_event_loop()
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/azure/identity/aio/_credentials/azd_cli.py: if sys.platform.startswith("win") and not isinstance(asyncio.get_event_loop(), asyncio.ProactorEventLoop):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/azure/identity/aio/_credentials/azure_cli.py: if sys.platform.startswith("win") and not isinstance(asyncio.get_event_loop(), asyncio.ProactorEventLoop):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/azure/identity/aio/_credentials/azure_powershell.py: if sys.platform.startswith("win") and not isinstance(asyncio.get_event_loop(), asyncio.ProactorEventLoop):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/helpers_async.py: loop = asyncio.get_event_loop()
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_azd_cli_credential_async.py: with mock.patch(AzureDeveloperCliCredential.__module__ + ".asyncio.get_event_loop"):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_azd_cli_credential_async.py: # asyncio.get_event_loop now returns Mock, i.e. never ProactorEventLoop
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_cli_credential_async.py: with mock.patch(AzureCliCredential.__module__ + ".asyncio.get_event_loop"):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_cli_credential_async.py: # asyncio.get_event_loop now returns Mock, i.e. never ProactorEventLoop
./caio-0.9.13.tar.gz: caio-0.9.13/PKG-INFO: loop = asyncio.get_event_loop()
./caio-0.9.13.tar.gz: caio-0.9.13/caio/asyncio_base.py: self.loop = loop or asyncio.get_event_loop()
./caio-0.9.13.tar.gz: caio-0.9.13/caio.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_powershell_credential_async.py: with patch(AzurePowerShellCredential.__module__ + ".asyncio.get_event_loop"):
./azure-identity-1.16.0.tar.gz: azure-identity-1.16.0/tests/test_powershell_credential_async.py: # asyncio.get_event_loop now returns Mock, i.e. never ProactorEventLoop
./azure-keyvault-certificates-4.8.0.tar.gz: azure-keyvault-certificates-4.8.0/tests/conftest.py: loop = asyncio.get_event_loop()
./dash-2.16.1.tar.gz: dash-2.16.1/dash/_jupyter.py: loop = asyncio.get_event_loop()
./azure-keyvault-keys-4.9.0.tar.gz: azure-keyvault-keys-4.9.0/tests/conftest.py: loop = asyncio.get_event_loop()
./azure-messaging-webpubsubservice-1.0.1.zip: azure-messaging-webpubsubservice-1.0.1/samples/get_client_access_token_async.py: loop = asyncio.get_event_loop()
./azure-mgmt-appconfiguration-3.0.0.zip: azure-mgmt-appconfiguration-3.0.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./fschat-0.2.36.tar.gz: fschat-0.2.36/fastchat/serve/lightllm_worker.py: loop = asyncio.get_event_loop()
./fsspec-2024.3.1.tar.gz: fsspec-2024.3.1/fsspec/asyn.py: original_policy = asyncio.get_event_loop_policy()
./fire-0.6.0.tar.gz: fire-0.6.0/fire/core.py: loop = asyncio.get_event_loop()
./gql-3.5.0.tar.gz: gql-3.5.0/gql/client.py: loop = asyncio.get_event_loop()
./gql-3.5.0.tar.gz: gql-3.5.0/gql/client.py: loop = asyncio.get_event_loop()
./gql-3.5.0.tar.gz: gql-3.5.0/gql/transport/websockets_base.py: self._loop = asyncio.get_event_loop()
./gradio-4.26.0.tar.gz: gradio-4.26.0/gradio/utils.py: asyncio.get_event_loop()
./gradio-4.26.0.tar.gz: gradio-4.26.0/gradio/utils.py: asyncio.get_event_loop()
./gradio-4.26.0.tar.gz: gradio-4.26.0/gradio/utils.py: event_loop = asyncio.get_event_loop()
./g4f-0.2.9.8.tar.gz: g4f-0.2.9.8/g4f/providers/base_provider.py: if isinstance(asyncio.get_event_loop_policy(), asyncio.WindowsProactorEventLoopPolicy):
./dask-kubernetes-2024.4.0.tar.gz: dask-kubernetes-2024.4.0/dask_kubernetes/common/networking.py: return await asyncio.get_event_loop().getaddrinfo(host, port)
./dask-kubernetes-2024.4.0.tar.gz: dask-kubernetes-2024.4.0/dask_kubernetes/operator/networking.py: return await asyncio.get_event_loop().getaddrinfo(host, port)
./gradio-4.26.0.tar.gz: gradio-4.26.0/test/test_analytics.py: loop = asyncio.get_event_loop()
./evdev-1.7.0.tar.gz: evdev-1.7.0/evdev/eventio_async.py: loop = asyncio.get_event_loop()
./evdev-1.7.0.tar.gz: evdev-1.7.0/evdev/eventio_async.py: loop = asyncio.get_event_loop()
./gekko-1.1.1.tar.gz: gekko-1.1.1/gekko/support.py: loop = asyncio.get_event_loop()
./genbadge-1.1.1.tar.gz: genbadge-1.1.1/ci_tools/nox_utils.py: loop = asyncio.get_event_loop()
./datadog-0.49.1.tar.gz: datadog-0.49.1/tests/unit/dogstatsd/test_statsd.py: loop = asyncio.get_event_loop()
./graphql-server-core-2.0.0.tar.gz: graphql-server-core-2.0.0/tests/test_asyncio.py: loop = asyncio.get_event_loop()
./azure-mgmt-compute-30.6.0.tar.gz: azure-mgmt-compute-30.6.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./Flask-Migrate-4.0.7.tar.gz: Flask-Migrate-4.0.7/src/flask_migrate/templates/aioflask/env.py: asyncio.get_event_loop().run_until_complete(run_migrations_online())
./Flask-Migrate-4.0.7.tar.gz: Flask-Migrate-4.0.7/src/flask_migrate/templates/aioflask-multidb/env.py: asyncio.get_event_loop().run_until_complete(run_migrations_online())
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/cyberark/pas/plugins/event_source/syslog.py: asyncio.get_event_loop().create_task(self.datagram_received_async(data, addr))
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/cyberark/pas/plugins/event_source/syslog.py: loop = asyncio.get_event_loop()
./dbnd-1.0.22.9.tar.gz: dbnd-1.0.22.9/src/dbnd/_vendor/tenacity/tests/test_asyncio.py: loop = asyncio.get_event_loop()
./idna-ssl-1.1.0.tar.gz: idna-ssl-1.1.0/PKG-INFO: loop = asyncio.get_event_loop()
./idna-ssl-1.1.0.tar.gz: idna-ssl-1.1.0/idna_ssl.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./grpcio-1.62.1.tar.gz: grpcio-1.62.1/src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi: Due to a defect of asyncio.get_event_loop, its returned event loop might
./grpcio-1.62.1.tar.gz: grpcio-1.62.1/src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi: return asyncio.get_event_loop_policy().get_event_loop()
./grpcio-1.62.1.tar.gz: grpcio-1.62.1/src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi: return asyncio.get_event_loop_policy().new_event_loop()
./grpcio-1.62.1.tar.gz: grpcio-1.62.1/src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi: return asyncio.get_event_loop()
./flytekit-1.11.0.tar.gz: flytekit-1.11.0/flytekit/experimental/eager_function.py: loop = asyncio.get_event_loop()
./fakeredis-2.21.3.tar.gz: fakeredis-2.21.3/fakeredis/aioredis.py: loop = asyncio.get_event_loop()
./fakeredis-2.21.3.tar.gz: fakeredis-2.21.3/fakeredis/aioredis.py: loop = asyncio.get_event_loop()
./falcon-3.1.3.tar.gz: falcon-3.1.3/falcon/util/sync.py: get_running_loop = asyncio.get_event_loop
./falcon-3.1.3.tar.gz: falcon-3.1.3/falcon/util/sync.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./falcon-3.1.3.tar.gz: falcon-3.1.3/tests/asgi/test_scope.py: coro = asyncio.get_event_loop().create_task(
./falcon-3.1.3.tar.gz: falcon-3.1.3/tests/asgi/test_scope.py: t = asyncio.get_event_loop().create_task(
./falcon-3.1.3.tar.gz: falcon-3.1.3/tests/asgi/test_scope.py: t = asyncio.get_event_loop().create_task(
./falcon-3.1.3.tar.gz: falcon-3.1.3/tests/dump_asgi.py: loop = asyncio.get_event_loop()
./foundationdb-7.3.37.tar.gz: foundationdb-7.3.37/fdb/impl.py: asyncio.get_event_loop().call_soon_threadsafe
./foundationdb-7.3.37.tar.gz: foundationdb-7.3.37/fdb/impl.py: Future._loop = asyncio.get_event_loop()
./azure-mgmt-eventhub-11.0.0.zip: azure-mgmt-eventhub-11.0.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./fastapi_mail-1.4.1.tar.gz: fastapi_mail-1.4.1/fastapi_mail/email_utils/email_check.py: loop = asyncio.get_event_loop()
./google-api-core-2.18.0.tar.gz: google-api-core-2.18.0/google/api_core/future/async_future.py: self._future = asyncio.get_event_loop().create_future()
./google-api-core-2.18.0.tar.gz: google-api-core-2.18.0/google/api_core/future/async_future.py: self._background_task = asyncio.get_event_loop().create_task(
./google-api-core-2.18.0.tar.gz: google-api-core-2.18.0/google/api_core/grpc_helpers_async.py: self._future = asyncio.get_event_loop().create_future()
./google-api-core-2.18.0.tar.gz: google-api-core-2.18.0/google/api_core/grpc_helpers_async.py: self._future = asyncio.get_event_loop().create_future()
./azure-mgmt-keyvault-10.3.0.tar.gz: azure-mgmt-keyvault-10.3.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./google-auth-2.29.0.tar.gz: google-auth-2.29.0/google/auth/transport/_aiohttp_requests.py: self._loop = asyncio.get_event_loop()
./influxdb_client-1.41.0.tar.gz: influxdb_client-1.41.0/tests/test_InfluxDBClientAsync.py: return asyncio.get_event_loop().run_until_complete(coro(*args, **kwargs))
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/client.py: self._loop = loop or asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/health/check.py: loop = asyncio.get_event_loop()
./inject-5.2.1.tar.gz: inject-5.2.1/test/__init__.py: loop = asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/protocol.py: self._ping_handle = asyncio.get_event_loop().call_later(
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/protocol.py: self._close_by_ping_handler = asyncio.get_event_loop().\
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/protocol.py: self._ping_handle = asyncio.get_event_loop().call_later(
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/server.py: self.loop = asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/server.py: self._loop = loop or asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/testing.py: self._loop = asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/utils.py: loop = asyncio.get_event_loop()
./grpclib-0.4.7.tar.gz: grpclib-0.4.7/grpclib/utils.py: loop = loop or asyncio.get_event_loop()
./integrationhelper-0.2.2.tar.gz: integrationhelper-0.2.2/integrationhelper/webclient.py: async with async_timeout.timeout(10, loop=asyncio.get_event_loop()):
./integrationhelper-0.2.2.tar.gz: integrationhelper-0.2.2/integrationhelper/webclient.py: async with async_timeout.timeout(10, loop=asyncio.get_event_loop()):
./integrationhelper-0.2.2.tar.gz: integrationhelper-0.2.2/integrationhelper/webclient.py: async with async_timeout.timeout(10, loop=asyncio.get_event_loop()):
./integrationhelper-0.2.2.tar.gz: integrationhelper-0.2.2/integrationhelper/webclient.py: async with async_timeout.timeout(10, loop=asyncio.get_event_loop()):
./azure-mgmt-monitor-6.0.2.tar.gz: azure-mgmt-monitor-6.0.2/tests/_aio_testcase.py: return asyncio.get_event_loop()
./jupyter-dash-0.4.2.tar.gz: jupyter-dash-0.4.2/jupyter_dash/comms.py: loop = asyncio.get_event_loop()
./jupyter-lsp-2.2.5.tar.gz: jupyter-lsp-2.2.5/jupyter_lsp/session.py: loop = asyncio.get_event_loop()
./jupyter_book-1.0.0.tar.gz: jupyter_book-1.0.0/jupyter_book/pdf.py: asyncio.get_event_loop().run_until_complete(_html_to_pdf(html_file, pdf_file))
./jupyter_console-6.6.3.tar.gz: jupyter_console-6.6.3/jupyter_console/ptshell.py: loop = asyncio.get_event_loop()
./azure-mgmt-network-25.3.0.tar.gz: azure-mgmt-network-25.3.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./jupyter_core-5.7.2.tar.gz: jupyter_core-5.7.2/tests/test_application.py: loop = asyncio.get_event_loop()
./google-cloud-aiplatform-1.47.0.tar.gz: google-cloud-aiplatform-1.47.0/tests/system/aiplatform/e2e_base.py: loop = asyncio.get_event_loop()
./jupyter_server-2.14.0.tar.gz: jupyter_server-2.14.0/jupyter_server/serverapp.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./ipinfo-5.0.1.tar.gz: ipinfo-5.0.1/README.md: >>> loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/examples/embedding/inprocess_qtconsole.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/examples/embedding/inprocess_terminal.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/eventloops.py: loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/eventloops.py: loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/eventloops.py: loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/ipkernel.py: and asyncio.get_event_loop().is_running()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/kernelapp.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/ipykernel/inprocess/client.py: loop = asyncio.get_event_loop()  # type:ignore[unreachable]
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/tests/_asyncio_utils.py: loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/tests/test_eventloop.py: loop = asyncio.get_event_loop()
./ipykernel-6.29.4.tar.gz: ipykernel-6.29.4/tests/test_kernel.py: loop = asyncio.get_event_loop()
./jupyterhub-4.1.5.tar.gz: jupyterhub-4.1.5/jupyterhub/app.py: loop = asyncio.get_event_loop()
./jupyterhub-4.1.5.tar.gz: jupyterhub-4.1.5/jupyterhub/app.py: type(asyncio.get_event_loop_policy())
./jupyterhub-4.1.5.tar.gz: jupyterhub-4.1.5/jupyterhub/app.py: asyncio.get_event_loop().stop()
./jupyterhub-4.1.5.tar.gz: jupyterhub-4.1.5/jupyterhub/proxy.py: loop = asyncio.get_event_loop()
./jupyterhub-4.1.5.tar.gz: jupyterhub-4.1.5/jupyterhub/tests/conftest.py: assert asyncio.get_event_loop() is event_loop
./google-cloud-aiplatform-1.47.0.tar.gz: google-cloud-aiplatform-1.47.0/tests/unit/vertexai/test_evaluation.py: with mock.patch("asyncio.get_event_loop") as mock_async_event_loop:
./google-cloud-aiplatform-1.47.0.tar.gz: google-cloud-aiplatform-1.47.0/vertexai/preview/evaluation/_evaluation.py: if asyncio.get_event_loop().is_running():
./google-cloud-aiplatform-1.47.0.tar.gz: google-cloud-aiplatform-1.47.0/vertexai/preview/evaluation/_evaluation.py: loop = asyncio.get_event_loop()
./frida-16.2.1.tar.gz: frida-16.2.1/frida/core.py: loop = asyncio.get_event_loop()
./jupyterlab-4.1.6.tar.gz: jupyterlab-4.1.6/jupyterlab/browser_check.py: loop = asyncio.get_event_loop()
./ipyvuetify-1.9.4.tar.gz: ipyvuetify-1.9.4/ipyvuetify/extra/file_input.py: asyncio.get_event_loop()
./jupyterlab-4.1.6.tar.gz: jupyterlab-4.1.6/jupyterlab/tests/test_build_api.py: loop = asyncio.get_event_loop()
./linearmodels-5.4.tar.gz: linearmodels-5.4/linearmodels/tests/test_examples.py: pol = asyncio.get_event_loop_policy()
./google-cloud-bigtable-2.23.0.tar.gz: google-cloud-bigtable-2.23.0/tests/system/data/setup_fixtures.py: loop = asyncio.get_event_loop()
./azure-mgmt-resource-23.0.1.zip: azure-mgmt-resource-23.0.1/tests/_aio_testcase.py: return asyncio.get_event_loop()
./h2-4.1.0.tar.gz: h2-4.1.0/examples/asyncio/asyncio-server.py: loop = asyncio.get_event_loop()
./h2-4.1.0.tar.gz: h2-4.1.0/examples/asyncio/wsgi-server.py: self._loop = asyncio.get_event_loop()
./h2-4.1.0.tar.gz: h2-4.1.0/examples/asyncio/wsgi-server.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/main.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/main.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/main.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/main.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/main.py: loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/conftest.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/test_alangfuse.py: start_time = asyncio.get_event_loop().time()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/test_alangfuse.py: total_time = asyncio.get_event_loop().time() - start_time
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/test_amazing_s3_logs.py: start_time = asyncio.get_event_loop().time()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/test_amazing_s3_logs.py: total_time = asyncio.get_event_loop().time() - start_time
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/tests/test_profiling_router.py: # loop = asyncio.get_event_loop()
./litellm-1.35.5.tar.gz: litellm-1.35.5/litellm/utils.py: loop = asyncio.get_event_loop() # 👈 gets the current event loop
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/discord/base.py: this function with `asyncio.get_event_loop().run_until_complete`.
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/discord/base.py: result = asyncio.get_event_loop().run_until_complete(
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/github_repo/utils.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/10k/uber_2021/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/blockchain_solana/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/braintrust_coda/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/covidqa/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/docugami_kg_rag/sec_10_q/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/history_of_alexnet/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/llama2_paper/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mini_covidqa/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mini_esg_bench/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mini_mt_bench_singlegrading/baselines.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mini_squadv2/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mini_truthfulqa/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/mt_bench_humanjudgement/baselines.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/origin_of_covid19/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/patronus_financebench/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_datasets/paul_graham_essay/llamaindex_baseline.py: loop = asyncio.get_event_loop()
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_packs/amazon_product_extraction/.ipynb_checkpoints/base-checkpoint.py: asyncio.get_event_loop().run_until_complete(_screenshot_page(
./llama_hub-0.0.79.post1.tar.gz: llama_hub-0.0.79.post1/llama_hub/llama_packs/amazon_product_extraction/base.py: asyncio.get_event_loop().run_until_complete(
./azure-mgmt-storage-21.1.0.tar.gz: azure-mgmt-storage-21.1.0/tests/_aio_testcase.py: return asyncio.get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_consolecli.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_consolecli_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_dcui.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_dcui_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_shell.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_shell_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_ssh.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_access_ssh_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_applmgmt_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_database_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_databasestorage_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_load_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_mem_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_softwarepackages_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_storage_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_swap_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_health_system_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_infraprofile_configs.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_infraprofile_configs_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_localaccounts_globalpolicy.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_localaccounts_globalpolicy_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_localaccounts_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_monitoring_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_monitoring_query.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_domains.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_domains_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_hostname.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_hostname_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_servers.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_dns_servers_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_firewall_inbound.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_firewall_inbound_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_interfaces_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_interfaces_ipv4.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_interfaces_ipv4_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_interfaces_ipv6.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_interfaces_ipv6_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_noproxy.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_noproxy_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_proxy.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_networking_proxy_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_ntp.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_ntp_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_services.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_services_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_shutdown.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_shutdown_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_globalfips.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_globalfips_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_storage.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_storage_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_time_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_time_timezone.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_time_timezone_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_system_version_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_timesync.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_timesync_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_update_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_vmon_service.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/appliance_vmon_service_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_configuration.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_configuration_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_library_item_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_locallibrary.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_locallibrary_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_subscribedlibrary.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/content_subscribedlibrary_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_cluster_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_datacenter.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_datacenter_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_datastore_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_folder_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_host.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_host_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_network_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_ovf_libraryitem.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_resourcepool.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_resourcepool_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_storage_policies_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_customization.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_filesystem_directories.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_identity_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_localfilesystem_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_networking_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_networking_interfaces_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_networking_routes_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_operations_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_power.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_guest_power_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_adapter_sata.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_adapter_sata_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_adapter_scsi.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_adapter_scsi_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_boot.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_boot_device.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_boot_device_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_boot_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_cdrom.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_cdrom_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_cpu.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_cpu_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_disk.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_disk_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_ethernet.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_ethernet_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_floppy.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_floppy_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_memory.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_memory_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_parallel.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_parallel_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_serial.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_hardware_serial_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_libraryitem_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_power.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_power_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_storage_policy.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_storage_policy_compliance.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_storage_policy_compliance_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_storage_policy_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_tools.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_tools_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_tools_installer.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vm_tools_installer_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vmtemplate_libraryitems.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./ansible-9.4.0.tar.gz: ansible-9.4.0/ansible_collections/vmware/vmware_rest/plugins/modules/vcenter_vmtemplate_libraryitems_info.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./google-cloud-firestore-2.16.0.tar.gz: google-cloud-firestore-2.16.0/google/cloud/firestore_bundle/bundle.py: loop = asyncio.get_event_loop()
./google-cloud-firestore-2.16.0.tar.gz: google-cloud-firestore-2.16.0/tests/system/test_system_async.py: policy = asyncio.get_event_loop_policy()
./Kivy-2.3.0.tar.gz: Kivy-2.3.0/examples/async/asyncio_advanced.py: loop = asyncio.get_event_loop()
./Kivy-2.3.0.tar.gz: Kivy-2.3.0/examples/async/asyncio_basic.py: loop = asyncio.get_event_loop()
./Kivy-2.3.0.tar.gz: Kivy-2.3.0/kivy/app.py: loop = asyncio.get_event_loop()
./Kivy-2.3.0.tar.gz: Kivy-2.3.0/kivy/tests/fixtures.py: loop = asyncio.get_event_loop()
./google-cloud-pubsublite-1.9.0.tar.gz: google-cloud-pubsublite-1.9.0/google/cloud/pubsublite/cloudpubsub/internal/single_partition_subscriber.py: self._loop = asyncio.get_event_loop()
./google-cloud-pubsublite-1.9.0.tar.gz: google-cloud-pubsublite-1.9.0/google/cloud/pubsublite/internal/wire/partition_count_watcher_impl.py: partition_count = await asyncio.get_event_loop().run_in_executor(
./kopf-1.37.2.tar.gz: kopf-1.37.2/kopf/_kits/loops.py: original_policy = asyncio.get_event_loop_policy()
./kopf-1.37.2.tar.gz: kopf-1.37.2/tests/testing/test_runner.py: original_policy = asyncio.get_event_loop_policy()
./kr8s-0.14.1.tar.gz: kr8s-0.14.1/kr8s/_portforward.py: self._loop = asyncio.get_event_loop()
./azure-schemaregistry-avroencoder-1.0.0.zip: azure-schemaregistry-avroencoder-1.0.0/azure/schemaregistry/encoder/avroencoder/aio/_async_lru.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroencoder-1.0.0.zip: azure-schemaregistry-avroencoder-1.0.0/samples/async_samples/eventhub_send_integration_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroencoder-1.0.0.zip: azure-schemaregistry-avroencoder-1.0.0/samples/async_samples/encode_and_decode_event_data_message_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroencoder-1.0.0.zip: azure-schemaregistry-avroencoder-1.0.0/samples/async_samples/encode_and_decode_with_message_content_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroencoder-1.0.0.zip: azure-schemaregistry-avroencoder-1.0.0/samples/async_samples/eventhub_receive_integration_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz: azure-schemaregistry-avroserializer-1.0.0b4.post1/azure/schemaregistry/serializer/avroserializer/aio/_async_lru.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz: azure-schemaregistry-avroserializer-1.0.0b4.post1/samples/async_samples/avro_serializer_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz: azure-schemaregistry-avroserializer-1.0.0b4.post1/samples/async_samples/eventhub_receive_integration_async.py: loop = asyncio.get_event_loop()
./azure-schemaregistry-avroserializer-1.0.0b4.post1.tar.gz: azure-schemaregistry-avroserializer-1.0.0b4.post1/samples/async_samples/eventhub_send_integration_async.py: loop = asyncio.get_event_loop()
./azure-search-documents-11.4.0.tar.gz: azure-search-documents-11.4.0/tests/async_tests/test_search_index_client_async.py: loop = asyncio.get_event_loop()
./janus-1.0.0.tar.gz: janus-1.0.0/PKG-INFO: loop = asyncio.get_event_loop()
./janus-1.0.0.tar.gz: janus-1.0.0/janus.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./janus-1.0.0.tar.gz: janus-1.0.0/tests/test_mixed.py: loop = asyncio.get_event_loop()
./janus-1.0.0.tar.gz: janus-1.0.0/tests/test_mixed.py: loop = asyncio.get_event_loop()
./azure-servicebus-7.12.1.tar.gz: azure-servicebus-7.12.1/azure/servicebus/aio/_async_utils.py: loop = asyncio.get_event_loop()
./azure-servicebus-7.12.1.tar.gz: azure-servicebus-7.12.1/azure/servicebus/aio/_async_utils.py: return asyncio.get_event_loop()
./azure-storage-blob-12.19.1.tar.gz: azure-storage-blob-12.19.1/tests/test_cpk_async.py: loop = asyncio.get_event_loop()
./azure-storage-blob-12.19.1.tar.gz: azure-storage-blob-12.19.1/tests/test_cpk_n_async.py: loop = asyncio.get_event_loop()
./azure-storage-file-datalake-12.14.0.tar.gz: azure-storage-file-datalake-12.14.0/tests/test_directory_async.py: loop = asyncio.get_event_loop()
./azure-storage-file-datalake-12.14.0.tar.gz: azure-storage-file-datalake-12.14.0/tests/test_file_async.py: loop = asyncio.get_event_loop()
./azure-storage-file-datalake-12.14.0.tar.gz: azure-storage-file-datalake-12.14.0/tests/test_file_system_async.py: loop = asyncio.get_event_loop()
./azure-storage-file-datalake-12.14.0.tar.gz: azure-storage-file-datalake-12.14.0/tests/test_large_file_async.py: loop = asyncio.get_event_loop()
./jeepney-0.8.0.tar.gz: jeepney-0.8.0/examples/aio_notify_noproxy.py: loop = asyncio.get_event_loop()
./anyio-4.3.0.tar.gz: anyio-4.3.0/src/anyio/_backends/_asyncio.py: child_watcher = asyncio.get_event_loop_policy().get_child_watcher()
./anyio-4.3.0.tar.gz: anyio-4.3.0/tests/test_pytest_plugin.py: asyncio.get_event_loop().call_exception_handler(
./anyio-4.3.0.tar.gz: anyio-4.3.0/tests/test_pytest_plugin.py: asyncio.get_event_loop().run_in_executor(None, lambda: 1)
./anyio-4.3.0.tar.gz: anyio-4.3.0/tests/test_sockets.py: policy = asyncio.get_event_loop_policy()
./anyscale-0.24.15.tar.gz: anyscale-0.24.15/anyscale/api.py: loop = asyncio.get_event_loop()
./kubernetes_asyncio-29.0.0.tar.gz: kubernetes_asyncio-29.0.0/README.md: loop = asyncio.get_event_loop()
./kubernetes_asyncio-29.0.0.tar.gz: kubernetes_asyncio-29.0.0/kubernetes_asyncio/config/exec_provider.py: if type(asyncio.get_event_loop()).__name__ == '_WindowsSelectorEventLoop':
./kubernetes_asyncio-29.0.0.tar.gz: kubernetes_asyncio-29.0.0/kubernetes_asyncio/config/openid_test.py: loop = asyncio.get_event_loop()
./kubernetes_asyncio-29.0.0.tar.gz: kubernetes_asyncio-29.0.0/kubernetes_asyncio/config/openid_test.py: loop = asyncio.get_event_loop()
./kubernetes_asyncio-29.0.0.tar.gz: kubernetes_asyncio-29.0.0/kubernetes_asyncio/config/openid_test.py: loop = asyncio.get_event_loop()
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/tools/ainetwork/base.py: loop = asyncio.get_event_loop()
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/tools/connery/tool.py: return await asyncio.get_event_loop().run_in_executor(None, func)
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/tools/playwright/utils.py: event_loop = asyncio.get_event_loop()
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/utilities/nvidia_riva.py: next_val = await asyncio.get_event_loop().run_in_executor(
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/utilities/nvidia_riva.py: loop = asyncio.get_event_loop()
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/vectorstores/bigquery_vector_search.py: return await asyncio.get_event_loop().run_in_executor(None, func)
./langchain_community-0.0.32.tar.gz: langchain_community-0.0.32/langchain_community/vectorstores/kinetica.py: return await asyncio.get_event_loop().run_in_executor(None, func)
./langchain_core-0.1.42.tar.gz: langchain_core-0.1.42/langchain_core/callbacks/manager.py: await asyncio.get_event_loop().run_in_executor(
./langchain_core-0.1.42.tar.gz: langchain_core-0.1.42/langchain_core/language_models/llms.py: loop = asyncio.get_event_loop()
./langchain_core-0.1.42.tar.gz: langchain_core-0.1.42/langchain_core/tracers/log_stream.py: loop = asyncio.get_event_loop()
./llama_index_core-0.10.29.tar.gz: llama_index_core-0.10.29/llama_index/core/async_utils.py: loop = asyncio.get_event_loop()
./llama_index_core-0.10.29.tar.gz: llama_index_core-0.10.29/llama_index/core/ingestion/pipeline.py: loop = asyncio.get_event_loop()
./llama_index_core-0.10.29.tar.gz: llama_index_core-0.10.29/llama_index/core/tools/tool_spec/base.py: loop = asyncio.get_event_loop()
./llama_index_core-0.10.29.tar.gz: llama_index_core-0.10.29/llama_index/core/utils.py: return asyncio.get_event_loop().run_until_complete(func(*args, **kwds))
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/async_utils.py: loop = asyncio.get_event_loop()
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/ingestion/pipeline.py: loop = asyncio.get_event_loop()
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/llms/openllm.py: loop = asyncio.get_event_loop()
./holoviews-1.18.3.tar.gz: holoviews-1.18.3/holoviews/tests/plotting/bokeh/test_server.py: asyncio.get_event_loop()
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/readers/discord_reader.py: this function with `asyncio.get_event_loop().run_until_complete`.
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/readers/discord_reader.py: return asyncio.get_event_loop().run_until_complete(
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/readers/github_readers/utils.py: loop = asyncio.get_event_loop()
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/tools/tool_spec/base.py: loop = asyncio.get_event_loop()
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/utils.py: return asyncio.get_event_loop().run_until_complete(func(*args, **kwds))
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/vector_stores/elasticsearch.py: return asyncio.get_event_loop().run_until_complete(
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/vector_stores/elasticsearch.py: return asyncio.get_event_loop().run_until_complete(
./llama_index_legacy-0.9.48.tar.gz: llama_index_legacy-0.9.48/llama_index/legacy/vector_stores/elasticsearch.py: return asyncio.get_event_loop().run_until_complete(
./mlserver-1.5.0.tar.gz: mlserver-1.5.0/mlserver/parallel/dispatcher.py: loop = asyncio.get_event_loop()
./mlserver-1.5.0.tar.gz: mlserver-1.5.0/mlserver/parallel/worker.py: loop = asyncio.get_event_loop()
./mlserver-1.5.0.tar.gz: mlserver-1.5.0/mlserver/parallel/worker.py: loop = asyncio.get_event_loop()
./mlserver-1.5.0.tar.gz: mlserver-1.5.0/mlserver/server.py: loop = asyncio.get_event_loop()
./mlserver-1.5.0.tar.gz: mlserver-1.5.0/mlserver/utils.py: if type(asyncio.get_event_loop_policy()).__module__.startswith("uvloop")
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/equinixmetal.py: loop = asyncio.get_event_loop()
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/equinixmetal.py: loop = asyncio.get_event_loop()
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/equinixmetal.py: loop = asyncio.get_event_loop()
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/vsphere.py: loop = asyncio.get_event_loop()
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/vsphere.py: loop = asyncio.get_event_loop()
./apache-libcloud-3.8.0.tar.gz: apache-libcloud-3.8.0/libcloud/compute/drivers/vsphere.py: loop = asyncio.get_event_loop()
./homeassistant-2024.4.3.tar.gz: homeassistant-2024.4.3/homeassistant/components/emulated_hue/upnp.py: loop = asyncio.get_event_loop()
./localstack-core-3.3.0.tar.gz: localstack-core-3.3.0/localstack/utils/asyncio.py: return asyncio.get_event_loop()
./loguru-0.7.2.tar.gz: loguru-0.7.2/loguru/_asyncio_loop.py: loop = asyncio.get_event_loop()
./loguru-0.7.2.tar.gz: loguru-0.7.2/tests/typesafety/test_logger.yml: loop=asyncio.get_event_loop(),
./libvirt-python-10.2.0.tar.gz: libvirt-python-10.2.0/libvirtaio.py: self.loop = loop or asyncio.get_event_loop()
./libvirt-python-10.2.0.tar.gz: libvirt-python-10.2.0/tests/test_aio.py: loop = asyncio.get_event_loop()
./homeassistant-2024.4.3.tar.gz: homeassistant-2024.4.3/homeassistant/components/keyboard_remote/__init__.py: asyncio.get_event_loop().remove_reader(self.dev.fileno())
./lightning-2.2.2.tar.gz: lightning-2.2.2/src/lightning/app/components/database/server.py: loop = asyncio.get_event_loop()
./lightning-2.2.2.tar.gz: lightning-2.2.2/src/lightning/app/core/api.py: loop = asyncio.get_event_loop()
./json-logging-1.3.0.tar.gz: json-logging-1.3.0/README.md: loop = asyncio.get_event_loop()
./ccxt-4.2.96.tar.gz: ccxt-4.2.96/ccxt/async_support/base/exchange.py: self.asyncio_loop = asyncio.get_event_loop()
./mysql-connector-python-8.3.0.tar.gz: mysql-connector-python-8.3.0/mysql/connector/aio/abstracts.py: loop or asyncio.get_event_loop()
./apache_airflow_providers_apache_beam-5.6.3.tar.gz: apache_airflow_providers_apache_beam-5.6.3/airflow/providers/apache/beam/operators/beam.py: loop = asyncio.get_event_loop()
./apache_airflow_providers_apache_beam-5.6.3.tar.gz: apache_airflow_providers_apache_beam-5.6.3/airflow/providers/apache/beam/operators/beam.py: loop = asyncio.get_event_loop()
./apache_airflow_providers_google-10.17.0.tar.gz: apache_airflow_providers_google-10.17.0/airflow/providers/google/cloud/hooks/bigquery.py: loop = asyncio.get_event_loop()
./mongomock_motor-0.0.29.tar.gz: mongomock_motor-0.0.29/mongomock_motor/__init__.py: return self.__io_loop or asyncio.get_event_loop()
./makefun-1.15.2.tar.gz: makefun-1.15.2/ci_tools/nox_utils.py: loop = asyncio.get_event_loop()
./makefun-1.15.2.tar.gz: makefun-1.15.2/tests/test_issues.py: assert asyncio.get_event_loop().run_until_complete(asyncio.ensure_future(wrapper(1).__anext__())) == 1
./makefun-1.15.2.tar.gz: makefun-1.15.2/tests/test_issues.py: assert asyncio.get_event_loop().run_until_complete(asyncio.ensure_future(f_partial().__anext__())) == 1
./mosaicml-cli-0.6.20.tar.gz: mosaicml-cli-0.6.20/mcli/api/mint/shell.py: self._loop = asyncio.get_event_loop_policy().get_event_loop()
./mangum-0.17.0.tar.gz: mangum-0.17.0/mangum/protocols/http.py: loop = asyncio.get_event_loop()
./mangum-0.17.0.tar.gz: mangum-0.17.0/mangum/protocols/lifespan.py: self.loop = asyncio.get_event_loop()
./panel-1.4.1.tar.gz: panel-1.4.1/panel/chat/feed.py: start = asyncio.get_event_loop().time()
./panel-1.4.1.tar.gz: panel-1.4.1/panel/chat/feed.py: duration = asyncio.get_event_loop().time() - start
./panel-1.4.1.tar.gz: panel-1.4.1/panel/chat/feed.py: loop = asyncio.get_event_loop()
./portpicker-1.6.0.tar.gz: portpicker-1.6.0/src/portserver.py: loop = asyncio.get_event_loop()
./portpicker-1.6.0.tar.gz: portpicker-1.6.0/src/portserver.py: event_loop = asyncio.get_event_loop()
./panel-1.4.1.tar.gz: panel-1.4.1/panel/io/server.py: type(asyncio.get_event_loop_policy()) is asyncio.WindowsSelectorEventLoopPolicy and
./pangres-4.2.1.tar.gz: pangres-4.2.1/pangres/core.py: >>> loop = asyncio.get_event_loop() # doctest: +SKIP
./pangres-4.2.1.tar.gz: pangres-4.2.1/pangres/tests/conftest.py: loop = asyncio.get_event_loop()
./motor-3.4.0.tar.gz: motor-3.4.0/test/mypy_fails/insert_many_dict.py: loop = asyncio.get_event_loop()
./motor-3.4.0.tar.gz: motor-3.4.0/test/mypy_fails/insert_one_list.py: loop = asyncio.get_event_loop()
./motor-3.4.0.tar.gz: motor-3.4.0/test/mypy_fails/raw_bson_document.py: loop = asyncio.get_event_loop()
./homeassistant-2024.4.3.tar.gz: homeassistant-2024.4.3/homeassistant/scripts/__init__.py: loop = asyncio.get_event_loop()
./homeassistant-2024.4.3.tar.gz: homeassistant-2024.4.3/homeassistant/scripts/benchmark/__init__.py: print("Using event loop:", asyncio.get_event_loop_policy().loop_name)
./pycares-4.4.0.tar.gz: pycares-4.4.0/examples/cares-asyncio.py: self.loop = loop or asyncio.get_event_loop()
./pycares-4.4.0.tar.gz: pycares-4.4.0/examples/cares-asyncio.py: loop = asyncio.get_event_loop()
./mattermostdriver-7.3.2.tar.gz: mattermostdriver-7.3.2/src/mattermostdriver/driver.py: loop = asyncio.get_event_loop()
./httpx-0.27.0.tar.gz: httpx-0.27.0/httpx/_utils.py: return asyncio.get_event_loop().time()
./httpx-0.27.0.tar.gz: httpx-0.27.0/tests/conftest.py: loop = asyncio.get_event_loop()
./praw-7.7.1.tar.gz: praw-7.7.1/tests/unit/test_reddit.py: loop = asyncio.get_event_loop()
./praw-7.7.1.tar.gz: praw-7.7.1/tests/unit/test_reddit.py: loop = asyncio.get_event_loop()
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/infrastructure/process.py: asyncio.get_event_loop_policy().set_child_watcher(ThreadedChildWatcher())
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/runner/runner.py: self._loop = asyncio.get_event_loop()
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/runner/runner.py: asyncio.get_event_loop_policy().set_child_watcher(ThreadedChildWatcher())
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/server/events/models/automations.py: loop = asyncio.get_event_loop()
./hug-2.6.1.tar.gz: hug-2.6.1/hug/api.py: loop = asyncio.get_event_loop()
./hug-2.6.1.tar.gz: hug-2.6.1/hug/interface.py: loop = asyncio.get_event_loop()
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/task_server.py: if not asyncio.get_event_loop().is_running():
./memory_profiler-0.61.0.tar.gz: memory_profiler-0.61.0/test/test_async.py: loop = asyncio.get_event_loop()
./prefect-2.17.1.tar.gz: prefect-2.17.1/src/prefect/workers/process.py: asyncio.get_event_loop_policy().set_child_watcher(ThreadedChildWatcher())
./prefect-dask-0.2.6.tar.gz: prefect-dask-0.2.6/tests/test_task_runners.py: policy = asyncio.get_event_loop_policy()
./nbclient-0.10.0.tar.gz: nbclient-0.10.0/nbclient/client.py: loop = asyncio.get_event_loop()
./nbdime-4.0.1.tar.gz: nbdime-4.0.1/nbdime/webapp/nbdimeserver.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./hypercorn-0.16.0.tar.gz: hypercorn-0.16.0/src/hypercorn/asyncio/run.py: loop = asyncio.get_event_loop()
./hypercorn-0.16.0.tar.gz: hypercorn-0.16.0/src/hypercorn/asyncio/statsd.py: self.transport, _ = await asyncio.get_event_loop().create_datagram_endpoint(
./hypercorn-0.16.0.tar.gz: hypercorn-0.16.0/src/hypercorn/asyncio/worker_context.py: return asyncio.get_event_loop().time()
./hypercorn-0.16.0.tar.gz: hypercorn-0.16.0/src/hypercorn/middleware/dispatcher.py: async with TaskGroup(asyncio.get_event_loop()) as task_group:
./hypercorn-0.16.0.tar.gz: hypercorn-0.16.0/src/hypercorn/middleware/wsgi.py: loop = asyncio.get_event_loop()
./prisma-0.13.1.tar.gz: prisma-0.13.1/src/prisma/utils.py: Starting from python3.10, asyncio.get_event_loop() raises a DeprecationWarning
./prisma-0.13.1.tar.gz: prisma-0.13.1/src/prisma/utils.py: This function serves as a future-proof wrapper over asyncio.get_event_loop()
./prisma-0.13.1.tar.gz: prisma-0.13.1/src/prisma/utils.py: return asyncio.get_event_loop()
./prometheus_client-0.20.0.tar.gz: prometheus_client-0.20.0/tests/test_asgi.py: asyncio.get_event_loop().run_until_complete(
./prometheus_client-0.20.0.tar.gz: prometheus_client-0.20.0/tests/test_asgi.py: asyncio.get_event_loop().run_until_complete(
./prometheus_client-0.20.0.tar.gz: prometheus_client-0.20.0/tests/test_asgi.py: output = asyncio.get_event_loop().run_until_complete(
./prompt_toolkit-3.0.43.tar.gz: prompt_toolkit-3.0.43/src/prompt_toolkit/application/application.py: loop = asyncio.get_event_loop()
./property-cached-1.6.4.zip: property-cached-1.6.4/PKG-INFO: >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())
./property-cached-1.6.4.zip: property-cached-1.6.4/property_cached.egg-info/PKG-INFO: >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())
./property-cached-1.6.4.zip: property-cached-1.6.4/tests/test_coroutine_cached_property.py: loop = asyncio.get_event_loop()
./property-cached-1.6.4.zip: property-cached-1.6.4/tests/test_async_cached_property.py: loop = asyncio.get_event_loop()
./neo4j-5.19.0.tar.gz: neo4j-5.19.0/src/neo4j/_async_compat/network/_bolt_socket.py: loop = asyncio.get_event_loop()
./neo4j-5.19.0.tar.gz: neo4j-5.19.0/src/neo4j/_async_compat/network/_util.py: loop = asyncio.get_event_loop()
./Pebble-5.0.7.tar.gz: Pebble-5.0.7/pebble/asynchronous/process.py: return asyncio.get_event_loop()
./Pebble-5.0.7.tar.gz: Pebble-5.0.7/pebble/asynchronous/thread.py: return asyncio.get_event_loop()
./neo4j-driver-5.19.0.tar.gz: neo4j-driver-5.19.0/src/neo4j/_async_compat/network/_bolt_socket.py: loop = asyncio.get_event_loop()
./neo4j-driver-5.19.0.tar.gz: neo4j-driver-5.19.0/src/neo4j/_async_compat/network/_util.py: loop = asyncio.get_event_loop()
./nest_asyncio-1.6.0.tar.gz: nest_asyncio-1.6.0/nest_asyncio.py: loop = loop or asyncio.get_event_loop()
./nest_asyncio-1.6.0.tar.gz: nest_asyncio-1.6.0/nest_asyncio.py: loop = asyncio.get_event_loop()
./nest_asyncio-1.6.0.tar.gz: nest_asyncio-1.6.0/nest_asyncio.py: asyncio.get_event_loop = _get_event_loop
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/PKG-INFO: loop = asyncio.get_event_loop()
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/README.md: loop = asyncio.get_event_loop()
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/meross_iot/http_api.py: loop = asyncio.get_event_loop()
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/meross_iot/http_api.py: loop = asyncio.get_event_loop()
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/meross_iot/manager.py: self._loop = asyncio.get_event_loop() if loop is None else loop
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/meross_iot.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./meross_iot-0.4.6.2.tar.gz: meross_iot-0.4.6.2/utilities/meross_sniffer.py: loop = asyncio.get_event_loop()
./ibm_watson_machine_learning-1.0.355.tar.gz: ibm_watson_machine_learning-1.0.355/ibm_watson_machine_learning/libs/ibmfl/cpd403/ibmfl/connection/websockets_connection.py: #asyncio.get_event_loop().run_forever()
./ibm_watson_machine_learning-1.0.355.tar.gz: ibm_watson_machine_learning-1.0.355/ibm_watson_machine_learning/libs/ibmfl/py38-tf24-pt17-sk23/ibmfl/connection/websockets_connection.py: #asyncio.get_event_loop().run_forever()
./pymodbus-3.6.8.tar.gz: pymodbus-3.6.8/pymodbus/server/async_io.py: self.loop = asyncio.get_event_loop()
./pexpect-4.9.0.tar.gz: pexpect-4.9.0/pexpect/_async_pre_await.py: transport, pw = yield from asyncio.get_event_loop().connect_read_pipe(
./pexpect-4.9.0.tar.gz: pexpect-4.9.0/pexpect/_async_w_await.py: _loop_getter = asyncio.get_event_loop
./msgtools-0.37.48.tar.gz: msgtools-0.37.48/msgtools/console/server.py: self.loop = asyncio.get_event_loop()
./msgtools-0.37.48.tar.gz: msgtools-0.37.48/msgtools/console/server.py: self.loop = asyncio.get_event_loop()
./msrest-0.7.1.zip: msrest-0.7.1/msrest/universal_http/async_requests.py: loop = kwargs.get("loop", asyncio.get_event_loop())
./msrest-0.7.1.zip: msrest-0.7.1/msrest/universal_http/async_requests.py: loop = asyncio.get_event_loop()
./prowler-4.0.1.tar.gz: prowler-4.0.1/prowler/providers/azure/azure_provider.py: asyncio.get_event_loop().run_until_complete(get_azure_identity())
./pydeck-0.8.0.tar.gz: pydeck-0.8.0/tests/browser/test_examples.py: asyncio.get_event_loop().run_until_complete(run_notebooks())
./pydeck-0.8.0.tar.gz: pydeck-0.8.0/tests/dev-containers/snap.py: asyncio.get_event_loop().run_until_complete(screenshot())
./proxy.py-2.4.3.tar.gz: proxy.py-2.4.3/proxy/core/work/fd/local.py: self._loop = asyncio.get_event_loop_policy().new_event_loop()
./proxy.py-2.4.3.tar.gz: proxy.py-2.4.3/proxy/core/work/fd/remote.py: self._loop = asyncio.get_event_loop_policy().get_event_loop()
./proxy.py-2.4.3.tar.gz: proxy.py-2.4.3/proxy/core/work/local.py: self._loop = asyncio.get_event_loop_policy().new_event_loop()
./proxy.py-2.4.3.tar.gz: proxy.py-2.4.3/proxy/core/work/remote.py: self._loop = asyncio.get_event_loop_policy().get_event_loop()
./pymsteams-0.2.2.tar.gz: pymsteams-0.2.2/PKG-INFO: loop = asyncio.get_event_loop()
./pymsteams-0.2.2.tar.gz: pymsteams-0.2.2/README.md: loop = asyncio.get_event_loop()
./pymsteams-0.2.2.tar.gz: pymsteams-0.2.2/pymsteams.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./pymsteams-0.2.2.tar.gz: pymsteams-0.2.2/test/test_webhook.py: loop = asyncio.get_event_loop()
./proxy_protocol-0.11.2.tar.gz: proxy_protocol-0.11.2/proxyprotocol/server/echo.py: loop = asyncio.get_event_loop()
./pydevd-pycharm-241.14494.241.tar.gz: pydevd-pycharm-241.14494.241/pydevconsole.py: loop = asyncio.get_event_loop()
./pydevd-pycharm-241.14494.241.tar.gz: pydevd-pycharm-241.14494.241/pydevconsole.py: loop = asyncio.get_event_loop()
./pydevd-pycharm-241.14494.241.tar.gz: pydevd-pycharm-241.14494.241/pydevconsole.py: loop = asyncio.get_event_loop()
./ptpython-3.0.26.tar.gz: ptpython-3.0.26/examples/asyncio-python-embed.py: loop = asyncio.get_event_loop()
./pubnub-7.4.4.tar.gz: pubnub-7.4.4/pubnub/pubnub_asyncio.py: self.event_loop = custom_event_loop or asyncio.get_event_loop()
./pubnub-7.4.4.tar.gz: pubnub-7.4.4/pubnub/pubnub_asyncio.py: self.loop = asyncio.get_event_loop()
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/adapter_daphne/test_daphne.py: loops.append(asyncio.get_event_loop())
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/adapter_uvicorn/test_uvicorn.py: loops.append(asyncio.get_event_loop())
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/coroutines_asyncio/test_context_propagation.py: asyncio.get_event_loop().run_until_complete(asyncio.gather(afut, bfut))
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_aiohttp/conftest.py: asyncio.get_event_loop().run_until_complete(self.asyncSetUp())
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_aiohttp/conftest.py: asyncio.get_event_loop().run_until_complete(self.asyncTearDown())
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_ariadne/_target_application.py: loop = asyncio.get_event_loop()
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_graphene/_target_application.py: loop = asyncio.get_event_loop()
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_graphql/_target_application.py: loop = asyncio.get_event_loop()
./newrelic-9.8.0.tar.gz: newrelic-9.8.0/tests/framework_strawberry/_target_application.py: loop = asyncio.get_event_loop()
./pyrad-2.4.tar.gz: pyrad-2.4/pyrad/client_async.py: pre_loop = asyncio.get_event_loop()
./pyrad-2.4.tar.gz: pyrad-2.4/pyrad/client_async.py: self.loop = asyncio.get_event_loop()
./pyrad-2.4.tar.gz: pyrad-2.4/pyrad/server_async.py: self.loop = asyncio.get_event_loop()
./pyee-11.1.0.tar.gz: pyee-11.1.0/pyee/asyncio.py: `asyncio.get_event_loop()`).
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/app/tasks/repository.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/app/tasks/repository.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/app/tasks/repository.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/download/base.py: result = asyncio.get_event_loop().run_until_complete(self.run(extra_data=extra_data))
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/download/factory.py: asyncio.get_event_loop().run_until_complete(self._session.close())
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/download/http.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/plugin/stages/declarative_version.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/plugin/stages/models.py: self._future = asyncio.get_event_loop().create_future()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/responses.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/responses.py: loop = asyncio.get_event_loop()
./pulpcore-3.50.2.tar.gz: pulpcore-3.50.2/pulpcore/tasking/tasks.py: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop() # type: AbstractEventLoop
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop() # type: AbstractEventLoop
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./mypy-1.9.0.tar.gz: mypy-1.9.0/test-data/unit/pythoneval-asyncio.test: loop = asyncio.get_event_loop()
./pyre-check-0.9.19.tar.gz: pyre-check-0.9.19/pyre_check/client/commands/persistent.py: return asyncio.get_event_loop().run_until_complete(
./pyre-check-0.9.19.tar.gz: pyre-check-0.9.19/pyre_check/client/commands/pysa_server.py: return asyncio.get_event_loop().run_until_complete(
./pyre-check-0.9.19.tar.gz: pyre-check-0.9.19/pyre_check/client/language_server/connections.py: loop = asyncio.get_event_loop()
./pigar-2.1.4.tar.gz: pigar-2.1.4/pigar/dist.py: event_loop = asyncio.get_event_loop()
./pika-1.3.2.tar.gz: pika-1.3.2/pika/adapters/asyncio_connection.py: Defaults to asyncio.get_event_loop().
./pika-1.3.2.tar.gz: pika-1.3.2/pika/adapters/asyncio_connection.py: self._loop = loop or asyncio.get_event_loop()
./python-binance-1.0.19.tar.gz: python-binance-1.0.19/PKG-INFO: loop = asyncio.get_event_loop()
./python-binance-1.0.19.tar.gz: python-binance-1.0.19/binance/helpers.py: loop = asyncio.get_event_loop()
./python-binance-1.0.19.tar.gz: python-binance-1.0.19/python_binance.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./python-can-4.3.1.tar.gz: python-can-4.3.1/test/listener_test.py: can.AsyncBufferedReader(loop=asyncio.get_event_loop())
./python-consul-1.1.0.tar.gz: python-consul-1.1.0/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./python-consul-1.1.0.tar.gz: python-consul-1.1.0/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./python-consul2-0.1.5.tar.gz: python-consul2-0.1.5/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./python-consul2-0.1.5.tar.gz: python-consul2-0.1.5/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/src/engineio/async_client.py: asyncio.get_event_loop().stop()
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/src/engineio/async_client.py: asyncio.get_event_loop().add_signal_handler(
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/src/engineio/async_client.py: loop = asyncio.get_event_loop()
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/src/engineio/async_server.py: if asyncio.get_event_loop().is_closed():
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_asgi.py: return asyncio.get_event_loop().run_until_complete(coro)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: return asyncio.get_event_loop().run_until_complete(coro)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: pending = asyncio.all_tasks(loop=asyncio.get_event_loop()) \
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(asyncio.wait(pending))
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_client.py: asyncio.get_event_loop().run_until_complete(test())
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: return asyncio.get_event_loop().run_until_complete(coro)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: pending = asyncio.all_tasks(loop=asyncio.get_event_loop()) \
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: asyncio.get_event_loop().run_until_complete(asyncio.wait(pending))
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_server.py: asyncio.get_event_loop().run_until_complete(fut)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_socket.py: return asyncio.get_event_loop().run_until_complete(coro)
./python-engineio-4.9.0.tar.gz: python-engineio-4.9.0/tests/async/test_tornado.py: return asyncio.get_event_loop().run_until_complete(coro)
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/client.py: self.loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/dispatcher.py: self.loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/sync.py: main_loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/sync.py: loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/utils.py: return await asyncio.get_event_loop().run_in_executor(executor, func)
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/utils.py: loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/connection/transport/tcp/tcp.py: self.loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/connection/transport/tcp/tcp.py: await asyncio.wait_for(asyncio.get_event_loop().sock_connect(self.socket, address), TCP.TIMEOUT)
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/methods/messages/download_media.py: asyncio.get_event_loop().create_task(downloader)
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/methods/pyromod/listen.py: loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/methods/utilities/run.py: loop = asyncio.get_event_loop()
./pyrofork-2.3.21.post3.tar.gz: pyrofork-2.3.21.post3/pyrogram/session/session.py: self.loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/client.py: self.loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/connection/transport/tcp/tcp.py: self.loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/connection/transport/tcp/tcp.py: await asyncio.wait_for(asyncio.get_event_loop().sock_connect(self.socket, address), TCP.TIMEOUT)
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/dispatcher.py: self.loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/methods/messages/download_media.py: asyncio.get_event_loop().create_task(downloader)
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/methods/utilities/run.py: loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/session/session.py: self.loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/sync.py: main_loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/sync.py: loop = asyncio.get_event_loop()
./Pyrogram-2.0.106.tar.gz: Pyrogram-2.0.106/pyrogram/utils.py: return await asyncio.get_event_loop().run_in_executor(executor, func)
./pyromod-3.1.6.tar.gz: pyromod-3.1.6/pyromod/listen/client.py: loop = asyncio.get_event_loop()
./pyglet-2.0.15.tar.gz: pyglet-2.0.15/pyglet/experimental/net.py: self._loop = _asyncio.get_event_loop()
./python-keycloak-client-0.2.3.tar.gz: python-keycloak-client-0.2.3/src/keycloak/aio/client.py: self._loop = loop or asyncio.get_event_loop()
./python-keycloak-client-0.2.3.tar.gz: python-keycloak-client-0.2.3/src/keycloak/aio/realm.py: self._loop = loop or asyncio.get_event_loop()
./pipenv-2023.12.1.tar.gz: pipenv-2023.12.1/pipenv/vendor/pexpect/_async.py: transport, pw = yield from asyncio.get_event_loop()\
./python-miio-0.5.12.tar.gz: python-miio-0.5.12/miio/push_server/server.py: loop = asyncio.get_event_loop()
./pure-python-adb-0.3.0.dev0.tar.gz: pure-python-adb-0.3.0.dev0/test_async/async_wrapper.py: ret = asyncio.get_event_loop().run_until_complete(coro)
./platformio-6.1.14.tar.gz: platformio-6.1.14/platformio/debug/cli.py: loop = asyncio.ProactorEventLoop() if IS_WINDOWS else asyncio.get_event_loop()
./Nuitka-2.1.5.tar.gz: Nuitka-2.1.5/tests/basics/ReferencingTest35.py: return await asyncio.get_event_loop().run_in_executor(None, sync_rmtree, path)
./Nuitka-2.1.5.tar.gz: Nuitka-2.1.5/tests/basics/ReferencingTest35.py: asyncio.get_event_loop().run_until_complete(run())
./playwright-stealth-1.0.6.tar.gz: playwright-stealth-1.0.6/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./playwright-stealth-1.0.6.tar.gz: playwright-stealth-1.0.6/README.md: asyncio.get_event_loop().run_until_complete(main())
./playwright-stealth-1.0.6.tar.gz: playwright-stealth-1.0.6/playwright_stealth.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./pyserial-3.5.tar.gz: pyserial-3.5/test/test_asyncio.py: self.loop = asyncio.get_event_loop()
./pyserial-3.5.tar.gz: pyserial-3.5/test/test_asyncio.py: asyncio.get_event_loop().stop()
./pyserial-asyncio-0.6.tar.gz: pyserial-asyncio-0.6/serial_asyncio/__init__.py: loop = asyncio.get_event_loop()
./pyserial-asyncio-0.6.tar.gz: pyserial-asyncio-0.6/serial_asyncio/__init__.py: loop = asyncio.get_event_loop()
./pyserial-asyncio-0.6.tar.gz: pyserial-asyncio-0.6/test/test_asyncio.py: self.loop = asyncio.get_event_loop()
./python-socketio-5.11.2.tar.gz: python-socketio-5.11.2/tests/async/helpers.py: return asyncio.get_event_loop().run_until_complete(coro)
./python-socks-2.4.4.tar.gz: python-socks-2.4.4/python_socks/async_/asyncio/_proxy.py: loop = asyncio.get_event_loop()
./python-socks-2.4.4.tar.gz: python-socks-2.4.4/python_socks/async_/asyncio/v2/_proxy.py: loop = asyncio.get_event_loop()
./python-socks-2.4.4.tar.gz: python-socks-2.4.4/python_socks/async_/asyncio/v2/_stream.py: loop = asyncio.get_event_loop()
./pyshark-0.6.tar.gz: pyshark-0.6/pyshark/capture/capture.py: current_eventloop = asyncio.get_event_loop_policy().get_event_loop()
./pyshark-0.6.tar.gz: pyshark-0.6/pyshark/capture/capture.py: self.eventloop = asyncio.get_event_loop_policy().get_event_loop()
./python-telegram-bot-21.1.tar.gz: python-telegram-bot-21.1/telegram/ext/_application.py: loop = asyncio.get_event_loop()
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pyhamcrest-2.1.0.tar.gz: pyhamcrest-2.1.0/tests/hamcrest_unit_test/core/future_test.py: asyncio.get_event_loop().run_until_complete(test())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/agent/ntforg/default-v1-trap.py: asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/agent/ntforg/multiple-notifications-at-once.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/manager/cmdgen/getbulk-to-eom.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/manager/cmdgen/multiple-concurrent-queries-over-ipv4-and-ipv6.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/manager/cmdgen/multiple-sequential-queries.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/hlapi/asyncio/manager/cmdgen/v1-get.py: asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/v3arch/asyncio/agent/cmdrsp/multiple-usm-users.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/examples/v3arch/asyncio/manager/ntfrcv/multiple-interfaces.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/carrier/asyncio/dgram/base.py: loop = asyncio.get_event_loop()
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/carrier/asyncio/dispatch.py: self.loop = kwargs.pop('loop', asyncio.get_event_loop())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/cmdgen.py: >>> asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/cmdgen.py: >>> asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/cmdgen.py: >>> asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/cmdgen.py: >>> asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/ntforg.py: >>> asyncio.get_event_loop().run_until_complete(run())
./pysnmp-4.4.12.tar.gz: pysnmp-4.4.12/pysnmp/hlapi/asyncio/ntforg.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/carrier/asyncio/dgram/base.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/carrier/asyncio/dispatch.py: self.loop = kwargs.pop("loop", asyncio.get_event_loop())
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/ntforg.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/sync/cmdgen.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/sync/cmdgen.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/sync/cmdgen.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/sync/cmdgen.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/pysnmp/hlapi/asyncio/sync/ntforg.py: loop = asyncio.get_event_loop()
./pysnmp_lextudio-6.1.2.tar.gz: pysnmp_lextudio-6.1.2/tests/hlapi/asyncio/manager/cmdgen/test_v1_get.py: loop = asyncio.get_event_loop()
./pyinotify-0.9.6.tar.gz: pyinotify-0.9.6/python3/examples/asyncio_notifier.py: loop = asyncio.get_event_loop()
./pyinstaller_hooks_contrib-2024.4.tar.gz: pyinstaller_hooks_contrib-2024.4/src/_pyinstaller_hooks_contrib/tests/test_libraries.py: loop = asyncio.get_event_loop()
./pyinstrument-4.6.2.tar.gz: pyinstrument-4.6.2/pyinstrument/magic/magic.py: old_loop = asyncio.get_event_loop()
./PyLD-2.0.4.tar.gz: PyLD-2.0.4/lib/pyld/documentloader/aiohttp.py: loop = asyncio.get_event_loop()
./plugp100-5.1.3.tar.gz: plugp100-5.1.3/plugp100/discovery/tapo_discovery.py: loop = asyncio.get_event_loop()
./qtconsole-5.5.1.tar.gz: qtconsole-5.5.1/qtconsole/qtconsoleapp.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./pylint-3.1.0.tar.gz: pylint-3.1.0/tests/functional/a/assignment/assignment_from_no_return_py3.py: loop = asyncio.get_event_loop()
./py-consul-1.4.1.tar.gz: py-consul-1.4.1/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./py-consul-1.4.1.tar.gz: py-consul-1.4.1/consul/aio.py: self._loop = loop or asyncio.get_event_loop()
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/client.py: :func:`asyncio.get_event_loop()`.
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/client.py: asyncio.get_event_loop() if loop is None else loop
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/ext/commands/cooldowns.py: self.loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/ext/tasks/__init__.py: self.loop = asyncio.get_event_loop()
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/ext/tasks/__init__.py: defaults to :func:`asyncio.get_event_loop`.
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/http.py: asyncio.get_event_loop() if loop is None else loop
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/player.py: loop = asyncio.get_event_loop()
./py-cord-2.5.0.tar.gz: py-cord-2.5.0/discord/ui/modal.py: self.loop = asyncio.get_event_loop()
./quart-0.19.5.tar.gz: quart-0.19.5/src/quart/app.py: task = asyncio.get_event_loop().create_task(_wrapper())
./py7zr-0.21.0.tar.gz: py7zr-0.21.0/tests/__init__.py: loop = asyncio.get_event_loop()
./ragas-0.1.7.tar.gz: ragas-0.1.7/src/ragas/embeddings/base.py: loop = asyncio.get_event_loop()
./ragas-0.1.7.tar.gz: ragas-0.1.7/src/ragas/llms/base.py: loop = asyncio.get_event_loop()
./ragas-0.1.7.tar.gz: ragas-0.1.7/src/ragas/llms/json_load.py: loop = asyncio.get_event_loop()
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/brokers/kafka.py: self._loop = asyncio.get_event_loop()
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/brokers/pika.py: `None` `asyncio.get_event_loop()` is used to get a loop.
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/brokers/pika.py: self._loop = event_loop or asyncio.get_event_loop()
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/jobs.py: __scheduler = AsyncIOScheduler(event_loop=asyncio.get_event_loop())
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/jobs.py: event_loop=asyncio.get_event_loop(), timezone=utc
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/jobs.py: if not __scheduler._eventloop == asyncio.get_event_loop():
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/core/run.py: rasa.utils.io.enable_async_loop_debugging(asyncio.get_event_loop())
./rasa-3.6.19.tar.gz: rasa-3.6.19/rasa/utils/io.py: "Enabling coroutine debugging. Loop id {}.".format(id(asyncio.get_event_loop()))
./rasterio-1.3.10.tar.gz: rasterio-1.3.10/examples/async-rasterio.py: loop = asyncio.get_event_loop()
./ratelimiter-1.2.0.post0.tar.gz: ratelimiter-1.2.0.post0/PKG-INFO: loop = asyncio.get_event_loop()
./ratelimiter-1.2.0.post0.tar.gz: ratelimiter-1.2.0.post0/ratelimiter.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/docs/source/how-to-guides/multiple_loops_example.py: assert isinstance(asyncio.get_event_loop_policy(), CustomEventLoopPolicy)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/docs/source/reference/fixtures/event_loop_policy_example.py: assert isinstance(asyncio.get_event_loop_policy(), CustomEventLoopPolicy)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/docs/source/reference/fixtures/event_loop_policy_parametrized_example.py: assert isinstance(asyncio.get_event_loop_policy(), DefaultEventLoopPolicy)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: old_loop_policy = asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: old_loop = asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: _restore_event_loop_policy(asyncio.get_event_loop_policy()),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: policy = asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: policy = asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: # When a user calls asyncio.get_event_loop(), they will get a closed loop.
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: policy = asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: _loop = asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/pytest_asyncio/plugin.py: return asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/async_fixtures/test_async_fixtures_with_finalizer.py: policy = asyncio.get_event_loop_policy()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/async_fixtures/test_async_fixtures_with_finalizer.py: asyncio.get_event_loop().run_until_complete(port_afinalizer())
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/async_fixtures/test_async_fixtures_with_finalizer.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/hypothesis/test_base.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/loop_fixture_scope/test_loop_fixture_scope.py: assert type(asyncio.get_event_loop()).__name__ == "CustomSelectorLoop"
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_class_scope.py: assert asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_class_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_class_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_class_scope.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_function_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_function_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_function_scope.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_module_scope.py: assert asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_module_scope.py: assert asyncio.get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_module_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_module_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_module_scope.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_package_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_package_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_package_scope.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_session_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_session_scope.py: asyncio.get_event_loop_policy(),
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/markers/test_session_scope.py: asyncio.get_event_loop().close()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture.py: assert type(asyncio.get_event_loop()).__name__ == "TestEventLoop"
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture.py: assert type(asyncio.get_event_loop()).__name__ == "TestEventLoop"
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: running_loop = asyncio.get_event_loop_policy().get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: current_loop = asyncio.get_event_loop_policy().get_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: asyncio.get_event_loop_policy().set_event_loop(None)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: asyncio.get_event_loop_policy().set_event_loop(None)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: asyncio.get_event_loop_policy().set_event_loop(None)
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_event_loop_fixture_finalizer.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_multiloop.py: assert type(asyncio.get_event_loop()).__name__ == "CustomSelectorLoop"
./pytest-asyncio-0.23.6.tar.gz: pytest-asyncio-0.23.6/tests/test_simple.py: return asyncio.get_event_loop()
./pytest-cases-3.8.5.tar.gz: pytest-cases-3.8.5/ci_tools/nox_utils.py: loop = asyncio.get_event_loop()
./pyuwsgi-2.0.23.post0.tar.gz: pyuwsgi-2.0.23.post0/tests/websockets_chat_asyncio.py: asyncio.get_event_loop().add_reader(uwsgi.connection_fd(), ws_recv_msg, myself)
./pyuwsgi-2.0.23.post0.tar.gz: pyuwsgi-2.0.23.post0/tests/websockets_chat_asyncio.py: asyncio.get_event_loop().call_later(4, ws_recv_msg, myself)
./pyautogen-0.2.23.tar.gz: pyautogen-0.2.23/autogen/agentchat/conversable_agent.py: return await asyncio.get_event_loop().run_in_executor(
./pytest-subprocess-1.5.0.tar.gz: pytest-subprocess-1.5.0/pytest_subprocess/process_dispatcher.py: asyncio.get_event_loop_policy().get_event_loop(), asyncio.SelectorEventLoop
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/examples/monitoring/zmq_monitor_class.py: # event_monitor_async(socket, zmq.asyncio.asyncio.get_event_loop() )
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/examples/monitoring/zmq_monitor_class.py: loop: an asyncio event loop, from calling zmq.asyncio.asyncio.get_event_loop() , whens starting a thread it does not contains an event loop
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/examples/monitoring/zmq_monitor_class.py: loop = zmq.asyncio.asyncio.get_event_loop()
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/examples/monitoring/zmq_monitor_class.py: event_monitor_async(socket, zmq.asyncio.asyncio.get_event_loop() )
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/examples/security/asyncio-ironhouse.py: # loop = asyncio.get_event_loop()
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/zmq/asyncio.py: return asyncio.get_event_loop()
./pyzmq-25.1.2.tar.gz: pyzmq-25.1.2/zmq/tests/conftest.py: assert asyncio.get_event_loop() is event_loop
./Rx-3.2.0.tar.gz: Rx-3.2.0/rx/core/observable/observable.py: loop = asyncio.get_event_loop()
./Rx-3.2.0.tar.gz: Rx-3.2.0/rx/scheduler/eventloop/asyncioscheduler.py: get this by asyncio.get_event_loop()
./Rx-3.2.0.tar.gz: Rx-3.2.0/rx/scheduler/eventloop/asynciothreadsafescheduler.py: get this by asyncio.get_event_loop()
./Rx-3.2.0.tar.gz: Rx-3.2.0/rx/scheduler/eventloop/asynciothreadsafescheduler.py: current_loop = asyncio.get_event_loop()
./reactivex-4.0.4.tar.gz: reactivex-4.0.4/reactivex/observable/observable.py: loop = asyncio.get_event_loop()
./reactivex-4.0.4.tar.gz: reactivex-4.0.4/reactivex/operators/_tofuture.py: future_ctor or asyncio.get_event_loop().create_future
./reactivex-4.0.4.tar.gz: reactivex-4.0.4/reactivex/scheduler/eventloop/asyncioscheduler.py: get this by asyncio.get_event_loop()
./reactivex-4.0.4.tar.gz: reactivex-4.0.4/reactivex/scheduler/eventloop/asynciothreadsafescheduler.py: current_loop = asyncio.get_event_loop()
./s3fs-2024.3.1.tar.gz: s3fs-2024.3.1/s3fs/core.py: loop = asyncio.get_event_loop()
./s3fs-2024.3.1.tar.gz: s3fs-2024.3.1/s3fs/tests/test_s3fs.py: loop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./readerwriterlock-1.0.9.tar.gz: readerwriterlock-1.0.9/tests/test_rwlock_async.py: eloop = asyncio.get_event_loop()
./realtime-1.0.4.tar.gz: realtime-1.0.4/realtime/channel.py: loop = asyncio.get_event_loop()  # TODO: replace with get_running_loop
./realtime-1.0.4.tar.gz: realtime-1.0.4/realtime/connection.py: loop = asyncio.get_event_loop()  # TODO: replace with get_running_loop
./realtime-1.0.4.tar.gz: realtime-1.0.4/realtime/connection.py: loop = asyncio.get_event_loop()  # TODO: replace with get_running
./refinitiv-data-1.6.0.tar.gz: refinitiv-data-1.6.0/refinitiv/data/content/_universe_streams.py: return await asyncio.get_event_loop().run_in_executor(
./refinitiv-data-1.6.0.tar.gz: refinitiv-data-1.6.0/refinitiv/data/delivery/_stream/_basestream.py: return await asyncio.get_event_loop().run_in_executor(None, partial(self.open, *args, **kwargs))
./refinitiv-data-1.6.0.tar.gz: refinitiv-data-1.6.0/refinitiv/data/delivery/_stream/_omm_stream.py: return await asyncio.get_event_loop().run_in_executor(
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/configure.py: asyncio.get_event_loop()
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/configure.py: nest_asyncio.apply(asyncio.get_event_loop())
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/content/chain/chain.py: asyncio.get_event_loop().run_until_complete(
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/content/search/Lookup.py: asyncio.get_event_loop().run_until_complete(
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/content/search/Search.py: asyncio.get_event_loop().run_until_complete(
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/content/search/ViewMetadata.py: asyncio.get_event_loop().run_until_complete(
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/core/session/session.py: self._loop = asyncio.get_event_loop()
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/delivery/data/endpoint.py: if asyncio.get_event_loop() == self.session._loop:
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/vendor/requests_async/http3/concurrency.py: self._loop = asyncio.get_event_loop()
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/vendor/requests_async/http3/concurrency.py: loop = asyncio.get_event_loop()
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/vendor/requests_async/http3/config.py: loop = asyncio.get_event_loop()
./refinitiv-dataplatform-1.0.0a21.tar.gz: refinitiv-dataplatform-1.0.0a21/refinitiv/dataplatform/vendor/requests_async/http3/dispatch/asgi.py: loop = asyncio.get_event_loop()
./pypeln-0.4.9.tar.gz: pypeln-0.4.9/pypeln/task/utils.py: loop = asyncio.get_event_loop()
./rembg-2.0.56.tar.gz: rembg-2.0.56/rembg/commands/b_command.py: loop = asyncio.get_event_loop()
./slack_sdk-3.27.1.tar.gz: slack_sdk-3.27.1/slack/web/async_internal_utils.py: return asyncio.get_event_loop()
./slack_sdk-3.27.1.tar.gz: slack_sdk-3.27.1/slack_sdk/rtm/__init__.py: self._event_loop = loop or asyncio.get_event_loop()
./slack_sdk-3.27.1.tar.gz: slack_sdk-3.27.1/slack_sdk/web/async_internal_utils.py: return asyncio.get_event_loop()
./slack_sdk-3.27.1.tar.gz: slack_sdk-3.27.1/slack_sdk/web/legacy_slack_response.py: response = asyncio.get_event_loop().run_until_complete(
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/PKG-INFO: loop = asyncio.get_event_loop()
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/README.md: loop = asyncio.get_event_loop()
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/slack/rtm/client.py: self._event_loop = loop or asyncio.get_event_loop()
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/slack/web/async_internal_utils.py: return asyncio.get_event_loop()
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/slack/web/slack_response.py: response = asyncio.get_event_loop().run_until_complete(
./slackclient-2.9.4.tar.gz: slackclient-2.9.4/slackclient.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./requests-html-0.10.0.tar.gz: requests-html-0.10.0/requests_html.py: self.loop = asyncio.get_event_loop()
./requests-html-0.10.0.tar.gz: requests-html-0.10.0/requests_html.py: self.loop = loop or asyncio.get_event_loop()
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/README.md: asyncio.get_event_loop().run_until_complete(main())
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/README.md: asyncio.get_event_loop().run_until_complete(main())
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/pyppeteer/launcher.py: self._loop = options.get('loop', asyncio.get_event_loop())
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/pyppeteer/launcher.py: connection = Connection(browserWSEndpoint, options.get('loop', asyncio.get_event_loop()), connectionDelay)
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/pyppeteer/page.py: loop = asyncio.get_event_loop()
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./pyppeteer-2.0.0.tar.gz: pyppeteer-2.0.0/PKG-INFO: asyncio.get_event_loop().run_until_complete(main())
./snakemake-8.10.7.tar.gz: snakemake-8.10.7/snakemake/io.py: asyncio.get_event_loop().create_task(worker(queue))
./respx-0.21.1.tar.gz: respx-0.21.1/respx/fixtures.py: loop = asyncio.get_event_loop_policy().new_event_loop()
./RestrictedPython-7.1.tar.gz: RestrictedPython-7.1/tests/transformer/test_async.py: loop = asyncio.get_event_loop()
./RestrictedPython-7.1.tar.gz: RestrictedPython-7.1/tests/transformer/test_async.py: loop = asyncio.get_event_loop()
./rethinkdb-2.4.10.post1.tar.gz: rethinkdb-2.4.10.post1/PKG-INFO: # might try asyncio.get_event_loop().run_until_complete(main()).
./rethinkdb-2.4.10.post1.tar.gz: rethinkdb-2.4.10.post1/README.md: # might try asyncio.get_event_loop().run_until_complete(main()).
./rethinkdb-2.4.10.post1.tar.gz: rethinkdb-2.4.10.post1/rethinkdb/asyncio_net/net_asyncio.py: self._io_loop = asyncio.get_event_loop()
./rethinkdb-2.4.10.post1.tar.gz: rethinkdb-2.4.10.post1/rethinkdb.egg-info/PKG-INFO: # might try asyncio.get_event_loop().run_until_complete(main()).
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/src/saf/manager.py: self.loop = asyncio.get_event_loop()
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/src/saf/utils/eventbus.py: loop = asyncio.get_event_loop()
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/src/saf/utils/eventbus.py: loop = asyncio.get_event_loop()
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/tests/functional/collectors/test_test.py: loop = asyncio.get_event_loop()
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/tests/integration/forwarders/test_concurrency.py: loop = asyncio.get_event_loop()
./salt-analytics-framework-0.5.0.tar.gz: salt-analytics-framework-0.5.0/tests/integration/manager/conftest.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/app.py: """Synonymous with asyncio.get_event_loop().
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/app.py: return asyncio.get_event_loop_policy().get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/app.py: return asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/server/loop.py: if not isinstance(asyncio.get_event_loop_policy(), uvloop.EventLoopPolicy):
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/server/loop.py: asyncio.get_event_loop_policy(), asyncio.WindowsSelectorEventLoopPolicy
./sanic-23.12.1.tar.gz: sanic-23.12.1/sanic/server/websockets/impl.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_app.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_request_cancel.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_request_cancel.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_server_events.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_signal_handlers.py: loop = asyncio.get_event_loop()
./sanic-23.12.1.tar.gz: sanic-23.12.1/tests/test_unix_socket.py: #         task = asyncio.get_event_loop().create_task(client())
./sanic-jwt-1.8.0.tar.gz: sanic-jwt-1.8.0/sanic_jwt/cache.py: if not asyncio.get_event_loop().is_running():
./sanic-jwt-1.8.0.tar.gz: sanic-jwt-1.8.0/sanic_jwt/cache.py: loop = asyncio.get_event_loop()
./sanic-jwt-1.8.0.tar.gz: sanic-jwt-1.8.0/sanic_jwt/cache.py: loop = asyncio.get_event_loop()
./sanic-jwt-1.8.0.tar.gz: sanic-jwt-1.8.0/sanic_jwt/configuration.py: if asyncio.get_event_loop().is_running():
./sounddevice-0.4.6.tar.gz: sounddevice-0.4.6/examples/asyncio_coroutines.py: loop = asyncio.get_event_loop()
./sounddevice-0.4.6.tar.gz: sounddevice-0.4.6/examples/asyncio_coroutines.py: loop = asyncio.get_event_loop()
./sounddevice-0.4.6.tar.gz: sounddevice-0.4.6/examples/asyncio_generators.py: loop = asyncio.get_event_loop()
./sounddevice-0.4.6.tar.gz: sounddevice-0.4.6/examples/asyncio_generators.py: loop = asyncio.get_event_loop()
./statsmodels-0.14.1.tar.gz: statsmodels-0.14.1/statsmodels/examples/tests/test_notebooks.py: pol = asyncio.get_event_loop_policy()
./roslibpy-1.6.0.tar.gz: roslibpy-1.6.0/src/roslibpy/event_emitter.py: configured event loop (defaults to ``asyncio.get_event_loop()``).
./schemathesis-3.27.0.tar.gz: schemathesis-3.27.0/src/schemathesis/_hypothesis.py: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.py: loop_getter: (Callable[..., asyncio.AbstractEventLoop] | asyncio.AbstractEventLoop) = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.py: loop_getter: (Callable[..., asyncio.AbstractEventLoop] | asyncio.AbstractEventLoop) = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.py: loop_getter: (Callable[..., asyncio.AbstractEventLoop] | asyncio.AbstractEventLoop) = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.py: loop_getter: (Callable[..., asyncio.AbstractEventLoop] | asyncio.AbstractEventLoop) = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.pyx: ] = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded/_asynciotask.pyx: ] = asyncio.get_event_loop,
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./threaded-4.2.0.tar.gz: threaded-4.2.0/threaded.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./thriftpy2-0.4.20.tar.gz: thriftpy2-0.4.20/tests/test_aio.py: asyncio.get_event_loop().run_until_complete(cls.server.close())
./thriftpy2-0.4.20.tar.gz: thriftpy2-0.4.20/thriftpy2/contrib/aio/server.py: self.loop = asyncio.get_event_loop()
./sparkmagic-0.21.0.tar.gz: sparkmagic-0.21.0/sparkmagic/kernels/wrapperkernel/sparkkernelbase.py: loop = asyncio.get_event_loop()
./stream-chat-4.15.0.tar.gz: stream-chat-4.15.0/PKG-INFO: loop = asyncio.get_event_loop()
./stream-chat-4.15.0.tar.gz: stream-chat-4.15.0/README.md: loop = asyncio.get_event_loop()
./stream-chat-4.15.0.tar.gz: stream-chat-4.15.0/stream_chat.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./stream_zip-0.0.71.tar.gz: stream_zip-0.0.71/stream_zip.py: loop = asyncio.get_event_loop()
./streamlit-1.33.0.tar.gz: streamlit-1.33.0/streamlit/web/bootstrap.py: if type(asyncio.get_event_loop_policy()) is WindowsProactorEventLoopPolicy:
./tinybird-cli-3.7.0.tar.gz: tinybird-cli-3.7.0/tinybird/syncasync.py: self.main_event_loop = asyncio.get_event_loop()
./tinybird-cli-3.7.0.tar.gz: tinybird-cli-3.7.0/tinybird/syncasync.py: event_loop = asyncio.get_event_loop()
./tinybird-cli-3.7.0.tar.gz: tinybird-cli-3.7.0/tinybird/syncasync.py: loop = asyncio.get_event_loop()
./tinybird-cli-3.7.0.tar.gz: tinybird-cli-3.7.0/tinybird/syncasync.py: loop = asyncio.get_event_loop()
./tm1py-2.0.2.tar.gz: TM1py-2.0.2/TM1py/Services/CellService.py: loop = asyncio.get_event_loop()
./tm1py-2.0.2.tar.gz: TM1py-2.0.2/TM1py/Services/CellService.py: loop = asyncio.get_event_loop()
./tm1py-2.0.2.tar.gz: TM1py-2.0.2/TM1py/Services/CellService.py: loop = asyncio.get_event_loop()
./tm1py-2.0.2.tar.gz: TM1py-2.0.2/TM1py/Services/CellService.py: loop = asyncio.get_event_loop()
./tm1py-2.0.2.tar.gz: TM1py-2.0.2/TM1py/Services/CellService.py: loop = asyncio.get_event_loop()
./torch_geometric-2.5.2.tar.gz: torch_geometric-2.5.2/torch_geometric/distributed/event_loop.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_llm.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_multimodal_model.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_multimodal_model.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_ttv.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_ttv.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/base_ttv.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/models/distilled_whisperx.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/async_workflow.py: self.loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base_swarm.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base_swarm.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base_swarm.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/base_swarm.py: loop = asyncio.get_event_loop()
./swarms-4.8.1.tar.gz: swarms-4.8.1/swarms/structs/model_parallizer.py: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/CHANGELOG.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta-2.9.5.tar.gz: okta-2.9.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./okta_jwt_verifier-0.2.5.tar.gz: okta_jwt_verifier-0.2.5/README.md: loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/ioloop.py: loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/platform/asyncio.py: ``asyncio.get_event_loop()``).
./tornado-6.4.tar.gz: tornado-6.4/tornado/platform/asyncio.py: super().initialize(asyncio.get_event_loop(), **kwargs)
./tornado-6.4.tar.gz: tornado-6.4/tornado/platform/asyncio.py: self.old_asyncio = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/platform/asyncio.py: loops explicitly or `asyncio.get_event_loop` (and therefore
./tornado-6.4.tar.gz: tornado-6.4/tornado/process.py: loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/process.py: loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: asyncio.get_event_loop().call_soon(self.stop)
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: asyncio.get_event_loop().run_in_executor(None, lambda: 42)
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: event_loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: loop = AddThreadSelectorEventLoop(asyncio.get_event_loop())  # type: ignore
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.orig_policy = asyncio.get_event_loop_policy()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: loop = asyncio.get_event_loop_policy().get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.orig_policy = asyncio.get_event_loop_policy()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: RuntimeError, self.executor.submit(asyncio.get_event_loop).result
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.executor.submit(asyncio.get_event_loop).result(),
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.executor.submit(lambda: asyncio.get_event_loop().close()).result()  # type: ignore
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.executor.submit(lambda: asyncio.get_event_loop().close()).result()  # type: ignore
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/asyncio_test.py: self.executor.submit(lambda: asyncio.get_event_loop().close()).result()  # type: ignore
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/gen_test.py: asyncio_loop = asyncio.get_event_loop()
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/gen_test.py: fut = asyncio.get_event_loop().create_task(infinite_coro(result))
./tornado-6.4.tar.gz: tornado-6.4/tornado/test/gen_test.py: await asyncio.get_event_loop().run_in_executor(
./tortoise_orm-0.20.0.tar.gz: tortoise_orm-0.20.0/tortoise/__init__.py: loop = asyncio.get_event_loop()
./tortoise_orm-0.20.0.tar.gz: tortoise_orm-0.20.0/tortoise/contrib/quart/__init__.py: loop = asyncio.get_event_loop()
./tortoise_orm-0.20.0.tar.gz: tortoise_orm-0.20.0/tortoise/contrib/test/__init__.py: loop = loop or asyncio.get_event_loop()
./tortoise_orm-0.20.0.tar.gz: tortoise_orm-0.20.0/tortoise/contrib/test/__init__.py: runner = asyncio.Runner(debug=True, loop_factory=asyncio.get_event_loop)
./tortoise_orm-0.20.0.tar.gz: tortoise_orm-0.20.0/tortoise/contrib/test/__init__.py: loop = asyncio.get_event_loop()
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/PKG-INFO: - Made bug fix in asyncio.get_event_loop backwards-compatible for now by just printing a warning rather than raising an error. In the next major version bump we can disable entirely.
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/PKG-INFO: - Fixed bug in using asyncio.get_event_loop.
./websockets-12.0.tar.gz: websockets-12.0/src/websockets/legacy/client.py: loop = asyncio.get_event_loop()
./websockets-12.0.tar.gz: websockets-12.0/src/websockets/legacy/protocol.py: loop = asyncio.get_event_loop()
./websockets-12.0.tar.gz: websockets-12.0/src/websockets/legacy/server.py: loop = asyncio.get_event_loop()
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/uamqp/utils.py: loop = asyncio.get_event_loop()
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/uamqp/utils.py: return asyncio.get_event_loop()
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/uamqp.egg-info/PKG-INFO: - Made bug fix in asyncio.get_event_loop backwards-compatible for now by just printing a warning rather than raising an error. In the next major version bump we can disable entirely.
./uamqp-1.6.9.tar.gz: uamqp-1.6.9/uamqp.egg-info/PKG-INFO: - Fixed bug in using asyncio.get_event_loop.
./spyder-5.5.4.tar.gz: spyder-5.5.4/spyder/plugins/ipythonconsole/widgets/main_widget.py: asyncio.get_event_loop_policy(),
./ws4py-0.5.1.tar.gz: ws4py-0.5.1/ws4py/server/tulipserver.py: loop = asyncio.get_event_loop()
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/__init__.py: # already, so we use "asyncio.get_event_loop()" here so that we can support
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/__init__.py: loop = asyncio.get_event_loop()
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/__init__.py: loop = asyncio.get_event_loop()
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/protocol.py: self._completion = asyncio.get_event_loop().create_future()
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/server.py: loop = asyncio.get_event_loop()
./wslink-2.0.0.tar.gz: wslink-2.0.0/src/wslink/server.py: loop = asyncio.get_event_loop()
./transformers-4.39.3.tar.gz: transformers-4.39.3/src/transformers/testing_utils.py: loop = asyncio.get_event_loop()
./transitions-0.9.0.tar.gz: transitions-0.9.0/PKG-INFO: asyncio.get_event_loop().run_until_complete(model.start())
./transitions-0.9.0.tar.gz: transitions-0.9.0/PKG-INFO: asyncio.get_event_loop().run_until_complete(asyncio.gather(m2.go(), m1.go()))
./transitions-0.9.0.tar.gz: transitions-0.9.0/README.md: asyncio.get_event_loop().run_until_complete(model.start())
./transitions-0.9.0.tar.gz: transitions-0.9.0/README.md: asyncio.get_event_loop().run_until_complete(asyncio.gather(m2.go(), m1.go()))
./transitions-0.9.0.tar.gz: transitions-0.9.0/examples/Frequently asked questions.ipynb: "asyncio.get_event_loop().run_until_complete(asyncio.gather(machine1.boot(), machine2.boot()))\n",
./transitions-0.9.0.tar.gz: transitions-0.9.0/transitions.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(model.start())
./transitions-0.9.0.tar.gz: transitions-0.9.0/transitions.egg-info/PKG-INFO: asyncio.get_event_loop().run_until_complete(asyncio.gather(m2.go(), m1.go()))
./SQLAlchemy-2.0.29.tar.gz: SQLAlchemy-2.0.29/lib/sqlalchemy/dialects/sqlite/aiosqlite.py: future = asyncio.get_event_loop().create_future()
./SQLAlchemy-2.0.29.tar.gz: SQLAlchemy-2.0.29/lib/sqlalchemy/util/_concurrency_py3k.py: """vendor asyncio.get_event_loop() for python 3.7 and above.
./SQLAlchemy-2.0.29.tar.gz: SQLAlchemy-2.0.29/lib/sqlalchemy/util/_concurrency_py3k.py: return asyncio.get_event_loop_policy().get_event_loop()
./SQLAlchemy-2.0.29.tar.gz: SQLAlchemy-2.0.29/test/base/test_tutorials.py: ep = asyncio.get_event_loop_policy()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/aiotest/__init__.py: testcase.loop = self.asyncio.get_event_loop()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/aiotest/test_thread.py: result["loop"] = asyncio.get_event_loop()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: assert isinstance(asyncio.get_event_loop_policy(), TrioPolicy)
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: assert loop == asyncio.get_event_loop()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: assert policy == asyncio.get_event_loop_policy()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: policy = asyncio.get_event_loop_policy()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: p2 = asyncio.get_event_loop_policy()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: assert isinstance(asyncio.get_event_loop_policy(), TrioPolicy)
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_concurrent.py: assert not isinstance(asyncio.get_event_loop_policy(), TrioPolicy)
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/tests/test_trio_asyncio.py: asyncio.get_event_loop().run_trio_task(trio_sleeper, "trio late")
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: #   an unpatched asyncio.get_event_loop_policy()) is set at import
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: #   asyncio.get_event_loop_policy() and calls it from its accelerated
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: #   C get_event_loop() function. We want asyncio.get_event_loop() to be
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: #   asyncio.get_event_loop_policy() and set_event_loop_policy()
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: #   any way to change it. asyncio.get_event_loop() will use this TrioPolicy
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: asyncio.get_event_loop_policy = _new_policy_get
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: asyncio.get_event_loop = _new_loop_get
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: ``asyncio.get_event_loop_policy
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: on the event loop returned by :func:`asyncio.get_event_loop`.
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: on the event loop returned by :func:`asyncio.get_event_loop`.
./trio_asyncio-0.14.0.tar.gz: trio_asyncio-0.14.0/trio_asyncio/_loop.py: on the event loop returned by :func:`asyncio.get_event_loop`.
./pycapnp-2.0.0.tar.gz: pycapnp-2.0.0/examples/async_ssl_calculator_client.py: loop = asyncio.get_event_loop()
./pycapnp-2.0.0.tar.gz: pycapnp-2.0.0/examples/async_ssl_client.py: loop = asyncio.get_event_loop()
./taskcluster-64.2.4.tar.gz: taskcluster-64.2.4/taskcluster/aio/asyncutils.py: loop = asyncio.get_event_loop()
./taskcluster-64.2.4.tar.gz: taskcluster-64.2.4/taskcluster/aio/asyncutils.py: loop = asyncio.get_event_loop()
./taskcluster-64.2.4.tar.gz: taskcluster-64.2.4/taskcluster/aio/asyncutils.py: loop = asyncio.get_event_loop()
./universal-analytics-python3-1.1.1.tar.gz: universal-analytics-python3-1.1.1/PKG-INFO: loop = asyncio.get_event_loop()
./universal-analytics-python3-1.1.1.tar.gz: universal-analytics-python3-1.1.1/README.md: loop = asyncio.get_event_loop()
./universal-analytics-python3-1.1.1.tar.gz: universal-analytics-python3-1.1.1/universal_analytics_python3.egg-info/PKG-INFO: loop = asyncio.get_event_loop()
./Telethon-1.34.0.tar.gz: Telethon-1.34.0/telethon/helpers.py: return asyncio.get_event_loop_policy().get_event_loop()
./Telethon-1.34.0.tar.gz: Telethon-1.34.0/telethon/helpers.py: return asyncio.get_event_loop()
./twisted-24.3.0.tar.gz: twisted-24.3.0/src/twisted/internet/asyncioreactor.py: # On Python 3.8+, asyncio.get_event_loop() on
./twisted-24.3.0.tar.gz: twisted-24.3.0/src/twisted/internet/test/test_asyncioreactor.py: L{asyncio.get_event_loop} are bound to the same loop.
./tenacity-8.2.3.tar.gz: tenacity-8.2.3/tests/test_asyncio.py: loop = asyncio.get_event_loop()
./txaio-23.1.1.tar.gz: txaio-23.1.1/examples/basic.py: asyncio.get_event_loop().run_until_complete(f1)
./txaio-23.1.1.tar.gz: txaio-23.1.1/examples/multiloop.py: asyncio.get_event_loop().run_until_complete(thing0.do_thing())
./txaio-23.1.1.tar.gz: txaio-23.1.1/examples/multiloop.py: #asyncio.get_event_loop().run_until_complete(thing1.do_thing())
./txaio-23.1.1.tar.gz: txaio-23.1.1/test/util.py: return _run_once(txaio.config.loop or asyncio.get_event_loop())
./txaio-23.1.1.tar.gz: txaio-23.1.1/test/util.py: loop = asyncio.get_event_loop()
./txaio-23.1.1.tar.gz: txaio-23.1.1/test/util.py: asyncio.get_event_loop().run_until_complete(future)
./txaio-23.1.1.tar.gz: txaio-23.1.1/txaio/__init__.py: txaio.config.loop = asyncio.get_event_loop()
./txaio-23.1.1.tar.gz: txaio-23.1.1/txaio/__init__.py: we use asyncio.get_event_loop). If using Twisted, set this to a
./txaio-23.1.1.tar.gz: txaio-23.1.1/txaio/aio.py: return asyncio.get_event_loop()
./uplink-0.9.7.tar.gz: uplink-0.9.7/uplink/clients/aiohttp_.py: asyncio.get_event_loop().run_until_complete(
./Scrapy-2.11.1.tar.gz: Scrapy-2.11.1/scrapy/utils/reactor.py: policy = asyncio.get_event_loop_policy()
./Scrapy-2.11.1.tar.gz: Scrapy-2.11.1/scrapy/utils/reactor.py: event_loop = asyncio.get_event_loop()
./Scrapy-2.11.1.tar.gz: Scrapy-2.11.1/tests/CrawlerProcess/asyncio_enabled_reactor.py: asyncioreactor.install(asyncio.get_event_loop())
./Scrapy-2.11.1.tar.gz: Scrapy-2.11.1/tests/CrawlerProcess/asyncio_enabled_reactor_different_loop.py: asyncioreactor.install(asyncio.get_event_loop())
./Scrapy-2.11.1.tar.gz: Scrapy-2.11.1/tests/CrawlerProcess/asyncio_enabled_reactor_same_loop.py: asyncioreactor.install(asyncio.get_event_loop())
./urwid-2.6.10.tar.gz: urwid-2.6.10/examples/asyncio_socket_server.py: loop = asyncio.get_event_loop()
./urwid-2.6.10.tar.gz: urwid-2.6.10/tests/test_event_loops.py: asyncio.ensure_future(error_coro(), loop=asyncio.get_event_loop_policy().get_event_loop())
./urwid-2.6.10.tar.gz: urwid-2.6.10/urwid/event_loop/asyncio_loop.py: asyncio.get_event_loop().call_soon(main_loop.draw_screen)
./urwid-2.6.10.tar.gz: urwid-2.6.10/urwid/event_loop/asyncio_loop.py: self._original_event_loop_policy = asyncio.get_event_loop_policy()
./urwid-2.6.10.tar.gz: urwid-2.6.10/urwid/event_loop/asyncio_loop.py: self._loop = asyncio.get_event_loop()
./urwid-mitmproxy-2.1.2.1.tar.gz: urwid-mitmproxy-2.1.2.1/examples/asyncio_socket_server.py: loop = asyncio.get_event_loop()
./urwid-mitmproxy-2.1.2.1.tar.gz: urwid-mitmproxy-2.1.2.1/urwid/main_loop.py: self._loop = asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/lifespan/on.py: loop = asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/middleware/wsgi.py: self.loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/middleware/wsgi.py: self.loop = asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/protocols/http/h11_impl.py: self.loop = _loop or asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/protocols/http/httptools_impl.py: self.loop = _loop or asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/protocols/websockets/websockets_impl.py: self.loop = _loop or asyncio.get_event_loop()
./uvicorn-0.29.0.tar.gz: uvicorn-0.29.0/uvicorn/protocols/websockets/wsproto_impl.py: self.loop = _loop or asyncio.get_event_loop()
./uvloop-0.19.0.tar.gz: uvloop-0.19.0/tests/test_aiohttp.py: self.assertIs(asyncio.get_event_loop(), self.loop)
./uvloop-0.19.0.tar.gz: uvloop-0.19.0/tests/test_base.py: old_policy = asyncio.get_event_loop_policy()
./uvloop-0.19.0.tar.gz: uvloop-0.19.0/tests/test_base.py: self.assertIs(asyncio.get_event_loop(), loop)
./uvloop-0.19.0.tar.gz: uvloop-0.19.0/uvloop/__init__.py: >>> asyncio.get_event_loop()
./uvloop-0.19.0.tar.gz: uvloop-0.19.0/uvloop/includes/stdlib.pxi: cdef aio_get_event_loop = asyncio.get_event_loop
./search-engine-parser-0.6.8.tar.gz: search-engine-parser-0.6.8/search_engine_parser/core/base.py: loop = asyncio.get_event_loop()
./secret-0.8.tar.gz: secret-0.8/secret/secret.py: loop = asyncio.get_event_loop()
./uwsgi-2.0.25.tar.gz: uwsgi-2.0.25/tests/websockets_chat_asyncio.py: asyncio.get_event_loop().add_reader(uwsgi.connection_fd(), ws_recv_msg, myself)
./uwsgi-2.0.25.tar.gz: uwsgi-2.0.25/tests/websockets_chat_asyncio.py: asyncio.get_event_loop().call_later(4, ws_recv_msg, myself)
./vaex-core-4.17.1.tar.gz: vaex-core-4.17.1/vaex/asyncio.py: loop_previous = asyncio.get_event_loop()
./vaex-core-4.17.1.tar.gz: vaex-core-4.17.1/vaex/asyncio.py: loop = asyncio.get_event_loop()
./vaex-core-4.17.1.tar.gz: vaex-core-4.17.1/vaex/multithreading.py: loop = asyncio.get_event_loop()
./vcrpy-6.0.1.tar.gz: vcrpy-6.0.1/tests/integration/test_aiohttp.py: loop = asyncio.get_event_loop()
./vcrpy-6.0.1.tar.gz: vcrpy-6.0.1/tests/integration/test_aiohttp.py: loop = asyncio.get_event_loop()
./vcrpy-6.0.1.tar.gz: vcrpy-6.0.1/tests/integration/test_aiohttp.py: asyncio.get_event_loop().close()
./vcrpy-6.0.1.tar.gz: vcrpy-6.0.1/vcr/stubs/aiohttp_stubs.py: loop=asyncio.get_event_loop(),
./selenium-wire-5.1.0.tar.gz: selenium-wire-5.1.0/seleniumwire/thirdparty/mitmproxy/log.py: asyncio.get_event_loop().call_soon(
./selenium-wire-5.1.0.tar.gz: selenium-wire-5.1.0/seleniumwire/thirdparty/mitmproxy/master.py: loop = asyncio.get_event_loop()
./vispy-0.14.2.tar.gz: vispy-0.14.2/vispy/app/backends/_jupyter_rfb.py: self._loop = asyncio.get_event_loop()
./vispy-0.14.2.tar.gz: vispy-0.14.2/vispy/app/backends/_jupyter_rfb.py: self._loop = asyncio.get_event_loop()
./voila-0.5.6.tar.gz: voila-0.5.6/voila/app.py: type(asyncio.get_event_loop_policy())
./voila-0.5.6.tar.gz: voila-0.5.6/voila/utils.py: asyncio.get_event_loop().stop()
./voila-0.5.6.tar.gz: voila-0.5.6/voila/voila_kernel_manager.py: loop = asyncio.get_event_loop()
./voila-0.5.6.tar.gz: voila-0.5.6/voila/voila_kernel_manager.py: task = asyncio.get_event_loop().create_task(
./tensorstore-0.1.56.tar.gz: tensorstore-0.1.56/docs/doctest_test.py: result = asyncio.get_event_loop().run_until_complete(coroutine)
./tensorstore-0.1.56.tar.gz: tensorstore-0.1.56/python/tensorstore/future.cc: python_imports.asyncio_get_event_loop_function().attr("create_future")();
./tensorstore-0.1.56.tar.gz: tensorstore-0.1.56/python/tensorstore/python_imports.cc: i.asyncio_get_event_loop_function =
./tensorstore-0.1.56.tar.gz: tensorstore-0.1.56/python/tensorstore/python_imports.h: pybind11::handle asyncio_get_event_loop_function;
./teslajsonpy-3.10.3.tar.gz: teslajsonpy-3.10.3/teslajsonpy/connection.py: loop = asyncio.get_event_loop()
./teslajsonpy-3.10.3.tar.gz: teslajsonpy-3.10.3/teslajsonpy/connection.py: #         loop = asyncio.get_event_loop()
./textual-0.56.4.tar.gz: textual-0.56.4/src/textual/app.py: # `asyncio.get_event_loop()` is deprecated since Python 3.10:
./textual-0.56.4.tar.gz: textual-0.56.4/src/textual/app.py: event_loop = asyncio.get_event_loop()
./sh-2.0.6.tar.gz: sh-2.0.6/tests/sh_test.py: loop = asyncio.get_event_loop()
./sh-2.0.6.tar.gz: sh-2.0.6/tests/sh_test.py: loop = asyncio.get_event_loop()
./sh-2.0.6.tar.gz: sh-2.0.6/tests/sh_test.py: loop = asyncio.get_event_loop()
./sh-2.0.6.tar.gz: sh-2.0.6/tests/sh_test.py: loop = asyncio.get_event_loop()
./shandy_sqlfmt-0.21.2.tar.gz: shandy_sqlfmt-0.21.2/src/sqlfmt/api.py: loop = asyncio.get_event_loop()
./simpervisor-1.0.0.tar.gz: simpervisor-1.0.0/tests/child_scripts/signalprinter.py: loop = asyncio.get_event_loop()
./simpervisor-1.0.0.tar.gz: simpervisor-1.0.0/tests/child_scripts/signalsupervisor.py: loop = asyncio.get_event_loop()
./opensearch-py-2.5.0.tar.gz: opensearch-py-2.5.0/opensearchpy/_async/compat.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_aiohttp_client-0.45b0.tar.gz: opentelemetry_instrumentation_aiohttp_client-0.45b0/tests/test_aiohttp_client_integration.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_aiohttp_client-0.45b0.tar.gz: opentelemetry_instrumentation_aiohttp_client-0.45b0/tests/test_aiohttp_client_integration.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_aiohttp_client-0.45b0.tar.gz: opentelemetry_instrumentation_aiohttp_client-0.45b0/tests/test_aiohttp_client_integration.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_aiopg-0.45b0.tar.gz: opentelemetry_instrumentation_aiopg-0.45b0/tests/test_aiopg_integration.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_asgi-0.45b0.tar.gz: opentelemetry_instrumentation_asgi-0.45b0/tests/test_asgi_middleware.py: asyncio.get_event_loop().run_until_complete(
./opentelemetry_instrumentation_httpx-0.45b0.tar.gz: opentelemetry_instrumentation_httpx-0.45b0/tests/test_httpx_integration.py: loop = asyncio.get_event_loop()
./opentelemetry_instrumentation_sqlalchemy-0.45b0.tar.gz: opentelemetry_instrumentation_sqlalchemy-0.45b0/tests/test_sqlalchemy.py: asyncio.get_event_loop().run_until_complete(run())
./opentelemetry_instrumentation_sqlalchemy-0.45b0.tar.gz: opentelemetry_instrumentation_sqlalchemy-0.45b0/tests/test_sqlalchemy.py: asyncio.get_event_loop().run_until_complete(run())
./opentelemetry_instrumentation_sqlalchemy-0.45b0.tar.gz: opentelemetry_instrumentation_sqlalchemy-0.45b0/tests/test_sqlalchemy.py: asyncio.get_event_loop().run_until_complete(run())
./opentelemetry_instrumentation_sqlalchemy-0.45b0.tar.gz: opentelemetry_instrumentation_sqlalchemy-0.45b0/tests/test_sqlalchemy.py: asyncio.get_event_loop().run_until_complete(run())
./opentelemetry_sdk-1.24.0.tar.gz: opentelemetry_sdk-1.24.0/tests/context/test_asyncio.py: self.loop = asyncio.get_event_loop()
./opentelemetry_test_utils-0.45b0.tar.gz: opentelemetry_test_utils-0.45b0/src/opentelemetry/test/asgitestutil.py: asyncio.get_event_loop().run_until_complete(
./opentelemetry_test_utils-0.45b0.tar.gz: opentelemetry_test_utils-0.45b0/src/opentelemetry/test/asgitestutil.py: asyncio.get_event_loop().run_until_complete(
./opentelemetry_test_utils-0.45b0.tar.gz: opentelemetry_test_utils-0.45b0/src/opentelemetry/test/asgitestutil.py: output = asyncio.get_event_loop().run_until_complete(
./opentracing-2.4.0.tar.gz: opentracing-2.4.0/opentracing/scope_managers/asyncio.py: loop = asyncio.get_event_loop()
./opentracing-2.4.0.tar.gz: opentracing-2.4.0/tests/scope_managers/test_asyncio.py: asyncio.get_event_loop().run_until_complete(async_test_fn())
./opentracing-2.4.0.tar.gz: opentracing-2.4.0/tests/scope_managers/test_contextvars.py: asyncio.get_event_loop().run_until_complete(async_test_fn())
./orbax_checkpoint-0.5.9.tar.gz: orbax_checkpoint-0.5.9/orbax/checkpoint/utils.py: loop = asyncio.get_event_loop()
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(mt(-2))
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(mt(1))
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(a(3))
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(a())
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(a())
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(a())
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(a())
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().stop()
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio.py: asyncio.get_event_loop().run_until_complete(driver())
./yappi-1.6.0.tar.gz: yappi-1.6.0/tests/test_asyncio_context_vars.py: loop = asyncio.get_event_loop()
./yeelight-0.7.14.tar.gz: yeelight-0.7.14/examples/async_reader.py: loop = asyncio.get_event_loop()
./vt-py-0.18.0.tar.gz: vt-py-0.18.0/vt/iterator.py: >>>  asyncio.get_event_loop().run_until_complete(print_comments)
./vt-py-0.18.0.tar.gz: vt-py-0.18.0/vt/utils.py: event_loop = asyncio.get_event_loop()
./wandb-0.16.6.tar.gz: wandb-0.16.6/wandb/filesync/step_prepare.py: RequestPrepare(file_spec, (asyncio.get_event_loop(), response))
./wandb-0.16.6.tar.gz: wandb-0.16.6/wandb/filesync/upload_job.py: loop = asyncio.get_event_loop()
./wandb-0.16.6.tar.gz: wandb-0.16.6/wandb/sdk/internal/internal_api.py: await asyncio.get_event_loop().run_in_executor(
./wandb-0.16.6.tar.gz: wandb-0.16.6/wandb/sdk/launch/utils.py: loop = asyncio.get_event_loop()
./paho_mqtt-2.0.0.tar.gz: paho_mqtt-2.0.0/examples/loop_asyncio.py: loop = asyncio.get_event_loop()
./paho_mqtt-2.0.0.tar.gz: paho_mqtt-2.0.0/tests/lib/clients/01-asyncio.py: loop = asyncio.get_event_loop()
./web3-6.17.0.tar.gz: web3-6.17.0/web3/_utils/async_caching.py: loop = asyncio.get_event_loop()
./web3-6.17.0.tar.gz: web3-6.17.0/web3/providers/websocket/websocket_v2.py: loop = asyncio.get_event_loop()
./zeep-4.2.1.tar.gz: zeep-4.2.1/examples/async_client.py: loop = asyncio.get_event_loop()
./zeroconf-0.132.2.tar.gz: zeroconf-0.132.2/tests/test_asyncio.py: await asyncio.get_event_loop().run_in_executor(None, sync_code)
./zeroconf-0.132.2.tar.gz: zeroconf-0.132.2/tests/utils/test_asyncio.py: loop = asyncio.get_event_loop()
./zigpy-deconz-0.23.1.tar.gz: zigpy-deconz-0.23.1/zigpy_deconz/api.py: ] = asyncio.get_event_loop().call_later(
./zigpy-xbee-0.20.1.tar.gz: zigpy-xbee-0.20.1/zigpy_xbee/uart.py: loop = asyncio.get_event_loop()
./zigpy-zigate-0.12.0.tar.gz: zigpy-zigate-0.12.0/zigpy_zigate/uart.py: loop = asyncio.get_event_loop()
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/matrix_bridge.py: self.loop: asyncio.AbstractEventLoop = asyncio.get_event_loop()
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/matrix_bridge.py: self.loop = asyncio.get_event_loop()
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/matrix_bridge.py: await asyncio.get_event_loop().run_in_executor(
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/matrix_bridge.py: asyncio.get_event_loop().set_exception_handler(exception_handler)
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/todo.md: - Replace `asyncio.get_event_loop()` by `asyncio.get_running_loop()` as soon
./zulip-0.9.0.tar.gz: zulip-0.9.0/integrations/bridge_with_matrix/todo.md: See: https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.get_event_loop

Time: 0:00:33.166820
Found 1,904 matching lines in 391 projects

@kumaraditya303
Copy link
Contributor Author

Is there a discussion somewhere about moving forward with this removal for 3.14? Is there a particular reason to move forward with this removal in 3.14, following the minimum deprecated->removed delay that the deprecation policy allows?

See asyncio channel on discord. I have given reasons for it there.

@hugovk
Copy link
Member

hugovk commented Nov 4, 2024

Please also summarise here, not everyone is on the private Discord.

@kumaraditya303
Copy link
Contributor Author

Summary:

kumaraditya303 added a commit that referenced this issue Nov 4, 2024
…oop` (#126354)

Remove implicit creation of loop from `asyncio.get_event_loop`. This is a step forward of deprecating the policy system of asyncio.
@github-project-automation github-project-automation bot moved this from Todo to Done in asyncio Nov 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stdlib Python modules in the Lib dir topic-asyncio type-feature A feature request or enhancement
Projects
Status: Done
Development

No branches or pull requests

4 participants