Use context manager

pull/35583/head
Xuan Wang 1 year ago
parent 26bdeee0eb
commit aa0d207e99
  1. 17
      src/python/grpcio/grpc/_cython/_cygrpc/aio/common.pyx.pxi

@ -183,14 +183,15 @@ if PY_MAJOR_VERSION >= 3 and PY_MINOR_VERSION >= 7:
try: try:
return asyncio.get_running_loop() return asyncio.get_running_loop()
except RuntimeError: except RuntimeError:
# Convert warnings to errors so we can capture them with except with warnings.catch_warnings():
warnings.filterwarnings("error", category=DeprecationWarning, module=__name__) # Convert DeprecationWarning to errors so we can capture them with except
try: warnings.simplefilter("error", DeprecationWarning)
return asyncio.get_event_loop_policy().get_event_loop() try:
# Since version 3.12, DeprecationWarning is emitted if there is no return asyncio.get_event_loop_policy().get_event_loop()
# current event loop. # Since version 3.12, DeprecationWarning is emitted if there is no
except DeprecationWarning: # current event loop.
return asyncio.get_event_loop_policy().new_event_loop() except DeprecationWarning:
return asyncio.get_event_loop_policy().new_event_loop()
else: else:
def get_working_loop(): def get_working_loop():
"""Returns a running event loop.""" """Returns a running event loop."""

Loading…
Cancel
Save