mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
asyncio: Fold some long lines.
This commit is contained in:
parent
3317a13253
commit
2b430b8720
2 changed files with 5 additions and 3 deletions
|
@ -62,8 +62,9 @@ class CoroWrapper:
|
|||
code = func.__code__
|
||||
filename = code.co_filename
|
||||
lineno = code.co_firstlineno
|
||||
logger.error('Coroutine %r defined at %s:%s was never yielded from',
|
||||
func.__name__, filename, lineno)
|
||||
logger.error(
|
||||
'Coroutine %r defined at %s:%s was never yielded from',
|
||||
func.__name__, filename, lineno)
|
||||
|
||||
|
||||
def coroutine(func):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue