Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 33.9k
bpo-43216: Remove @asyncio.coroutine#26369
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
Merged
Uh oh!
There was an error while loading. Please reload this page.
Merged
Changes from all commits
Commits
Show all changes
7 commits Select commit Hold shift + click to select a range
4e037da bpo-43216: Remove @asyncio.coroutine
illia-v c1df1f0 Update the news entry
illia-v 92e8d2e Remove CoroWrapper
illia-v a62103a Remove unused imports
illia-v 769201f Revert removal of useful documentation
illia-v 7ebb5b1 Remove a comment mentioning CoroWrapper
illia-v b36f792 Document removal of CoroWrapper
illia-v File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -126,7 +126,15 @@ Deprecated | ||
| Removed | ||
| ======= | ||
| * The :func:`@asyncio.coroutine <asyncio.coroutine>` :term:`decorator` enabling | ||
| legacy generator-based coroutines to be compatible with async/await code. | ||
| The function has been deprecated since Python 3.8 and the removal was | ||
| initially scheduled for Python 3.10. Use :keyword:`async def` instead. | ||
| (Contributed by Illia Volochii in :issue:`43216`.) | ||
illia-v marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| * :class:`asyncio.coroutines.CoroWrapper` used for wrapping legacy | ||
| generator-based coroutine objects in the debug mode. | ||
| (Contributed by Illia Volochii in :issue:`43216`.) | ||
| Porting to Python 3.11 | ||
| ====================== | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,162 +1,19 @@ | ||
| __all__ = 'coroutine', 'iscoroutinefunction', 'iscoroutine' | ||
| __all__ = 'iscoroutinefunction', 'iscoroutine' | ||
| import collections.abc | ||
| import functools | ||
| import inspect | ||
| import os | ||
| import sys | ||
| import traceback | ||
| import types | ||
| import warnings | ||
| from . import base_futures | ||
| from . import constants | ||
| from . import format_helpers | ||
| from .log import logger | ||
| def _is_debug_mode(): | ||
| # If you set _DEBUG to true, @coroutine will wrap the resulting | ||
| # generator objects in a CoroWrapper instance (defined below). That | ||
| # instance will log a message when the generator is never iterated | ||
| # over, which may happen when you forget to use "await" or "yield from" | ||
| # with a coroutine call. | ||
| # Note that the value of the _DEBUG flag is taken | ||
| # when the decorator is used, so to be of any use it must be set | ||
| # before you define your coroutines. A downside of using this feature | ||
| # is that tracebacks show entries for the CoroWrapper.__next__ method | ||
| # when _DEBUG is true. | ||
| # See: https://docs.python.org/3/library/asyncio-dev.html#asyncio-debug-mode. | ||
| return sys.flags.dev_mode or (not sys.flags.ignore_environment and | ||
| bool(os.environ.get('PYTHONASYNCIODEBUG'))) | ||
| _DEBUG = _is_debug_mode() | ||
| class CoroWrapper: | ||
| # Wrapper for coroutine object in _DEBUG mode. | ||
| def __init__(self, gen, func=None): | ||
| assert inspect.isgenerator(gen) or inspect.iscoroutine(gen), gen | ||
| self.gen = gen | ||
| self.func = func # Used to unwrap @coroutine decorator | ||
| self._source_traceback = format_helpers.extract_stack(sys._getframe(1)) | ||
| self.__name__ = getattr(gen, '__name__', None) | ||
| self.__qualname__ = getattr(gen, '__qualname__', None) | ||
| def __repr__(self): | ||
| coro_repr = _format_coroutine(self) | ||
| if self._source_traceback: | ||
| frame = self._source_traceback[-1] | ||
| coro_repr += f', created at{frame[0]}:{frame[1]}' | ||
| return f'<{self.__class__.__name__}{coro_repr}>' | ||
| def __iter__(self): | ||
| return self | ||
| def __next__(self): | ||
| return self.gen.send(None) | ||
| def send(self, value): | ||
| return self.gen.send(value) | ||
| def throw(self, type, value=None, traceback=None): | ||
| return self.gen.throw(type, value, traceback) | ||
| def close(self): | ||
| return self.gen.close() | ||
| @property | ||
| def gi_frame(self): | ||
| return self.gen.gi_frame | ||
| @property | ||
| def gi_running(self): | ||
| return self.gen.gi_running | ||
| @property | ||
| def gi_code(self): | ||
| return self.gen.gi_code | ||
| def __await__(self): | ||
| return self | ||
| @property | ||
| def gi_yieldfrom(self): | ||
| return self.gen.gi_yieldfrom | ||
| def __del__(self): | ||
| # Be careful accessing self.gen.frame -- self.gen might not exist. | ||
| gen = getattr(self, 'gen', None) | ||
| frame = getattr(gen, 'gi_frame', None) | ||
| if frame is not None and frame.f_lasti == -1: | ||
| msg = f'{self!r} was never yielded from' | ||
| tb = getattr(self, '_source_traceback', ()) | ||
| if tb: | ||
| tb = ''.join(traceback.format_list(tb)) | ||
| msg += (f'\nCoroutine object created at ' | ||
| f'(most recent call last, truncated to ' | ||
| f'{constants.DEBUG_STACK_DEPTH} last lines):\n') | ||
| msg += tb.rstrip() | ||
| logger.error(msg) | ||
| def coroutine(func): | ||
| """Decorator to mark coroutines. | ||
| If the coroutine is not yielded from before it is destroyed, | ||
| an error message is logged. | ||
| """ | ||
| warnings.warn('"@coroutine" decorator is deprecated since Python 3.8, use "async def" instead', | ||
| DeprecationWarning, | ||
| stacklevel=2) | ||
| if inspect.iscoroutinefunction(func): | ||
| # In Python 3.5 that's all we need to do for coroutines | ||
| # defined with "async def". | ||
| return func | ||
| if inspect.isgeneratorfunction(func): | ||
| coro = func | ||
| else: | ||
| @functools.wraps(func) | ||
| def coro(*args, **kw): | ||
| res = func(*args, **kw) | ||
| if (base_futures.isfuture(res) or inspect.isgenerator(res) or | ||
| isinstance(res, CoroWrapper)): | ||
| res = yield from res | ||
| else: | ||
| # If 'res' is an awaitable, run it. | ||
| try: | ||
| await_meth = res.__await__ | ||
| except AttributeError: | ||
| pass | ||
| else: | ||
| if isinstance(res, collections.abc.Awaitable): | ||
| res = yield from await_meth() | ||
| return res | ||
| coro = types.coroutine(coro) | ||
| if not _DEBUG: | ||
| wrapper = coro | ||
| else: | ||
| @functools.wraps(func) | ||
| def wrapper(*args, **kwds): | ||
| w = CoroWrapper(coro(*args, **kwds), func=func) | ||
illia-v marked this conversation as resolved. Show resolvedHide resolvedUh oh!There was an error while loading. Please reload this page. | ||
| if w._source_traceback: | ||
| del w._source_traceback[-1] | ||
| # Python < 3.5 does not implement __qualname__ | ||
| # on generator objects, so we set it manually. | ||
| # We use getattr as some callables (such as | ||
| # functools.partial may lack __qualname__). | ||
| w.__name__ = getattr(func, '__name__', None) | ||
| w.__qualname__ = getattr(func, '__qualname__', None) | ||
| return w | ||
| wrapper._is_coroutine = _is_coroutine # For iscoroutinefunction(). | ||
| return wrapper | ||
| # A marker for iscoroutinefunction. | ||
| _is_coroutine = object() | ||
| @@ -170,7 +27,7 @@ def iscoroutinefunction(func): | ||
| # Prioritize native coroutine check to speed-up | ||
| # asyncio.iscoroutine. | ||
| _COROUTINE_TYPES = (types.CoroutineType, types.GeneratorType, | ||
| collections.abc.Coroutine, CoroWrapper) | ||
| collections.abc.Coroutine) | ||
| _iscoroutine_typecache = set() | ||
| @@ -193,16 +50,11 @@ def iscoroutine(obj): | ||
| def _format_coroutine(coro): | ||
| assert iscoroutine(coro) | ||
| is_corowrapper = isinstance(coro, CoroWrapper) | ||
| def get_name(coro): | ||
| # Coroutines compiled with Cython sometimes don't have | ||
| # proper __qualname__ or __name__. While that is a bug | ||
| # in Cython, asyncio shouldn't crash with an AttributeError | ||
| # in its __repr__ functions. | ||
| if is_corowrapper: | ||
| return format_helpers._format_callback(coro.func, (),{}) | ||
| if hasattr(coro, '__qualname__') and coro.__qualname__: | ||
| coro_name = coro.__qualname__ | ||
| elif hasattr(coro, '__name__') and coro.__name__: | ||
| @@ -247,18 +99,8 @@ def is_running(coro): | ||
| filename = coro_code.co_filename or '<empty co_filename>' | ||
| lineno = 0 | ||
| if (is_corowrapper and | ||
| coro.func is not None and | ||
| not inspect.isgeneratorfunction(coro.func)): | ||
| source = format_helpers._get_function_source(coro.func) | ||
| if source is not None: | ||
| filename, lineno = source | ||
| if coro_frame is None: | ||
| coro_repr = f'{coro_name} done, defined at{filename}:{lineno}' | ||
| else: | ||
| coro_repr = f'{coro_name} running, defined at{filename}:{lineno}' | ||
| elif coro_frame is not None: | ||
| if coro_frame is not None: | ||
| lineno = coro_frame.f_lineno | ||
| coro_repr = f'{coro_name} running at{filename}:{lineno}' | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.