mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-23 10:14:50 +07:00
I added helper class PyKnownDecoratorUtil that contains list of well-known decorators from Python's standard library and redefined several existing methods from PyUtil in terms of this class.
7 lines
163 B
Python
7 lines
163 B
Python
import asyncio
|
|
|
|
# PY-9778
|
|
def process():
|
|
@asyncio.coroutine
|
|
def <weak_warning descr="Local function 'func' is not used">func</weak_warning>():
|
|
pass |