diff options
author | shadchin <shadchin@yandex-team.com> | 2024-03-04 21:16:16 +0300 |
---|---|---|
committer | shadchin <shadchin@yandex-team.com> | 2024-03-04 21:43:39 +0300 |
commit | 74819c4157bd388a7d429c870ea4b343a282dafa (patch) | |
tree | 4bff355b03dfb24b14d33581357cc8e624d170fd /contrib/python/tornado | |
parent | f64c28a5443395e3a8f27e6f1b15a3507812d2de (diff) | |
download | ydb-74819c4157bd388a7d429c870ea4b343a282dafa.tar.gz |
Extend support pyi files
Сейчас pyi файлы в макросе PY_SRCS используются исключительно в Arcadia плагине для продуктов JB, при сборке эти файлы просто игнорируются.
В этом PR добавил шаг, который будет содержимое этих файлов складывать в ресурсы, секция PY_SRCS удобна тем, что позволяет раскладывать pyi файлы с учетом TOP_LEVEL/NAMESPACE, а это необходимо для правильной работы mypy.
3924b0556bc99947e6893cd79e5ce62ec72a18a9
Diffstat (limited to 'contrib/python/tornado')
-rw-r--r-- | contrib/python/tornado/tornado-4/tornado/platform/auto.pyi | 4 | ||||
-rw-r--r-- | contrib/python/tornado/tornado-4/tornado/speedups.pyi | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/contrib/python/tornado/tornado-4/tornado/platform/auto.pyi b/contrib/python/tornado/tornado-4/tornado/platform/auto.pyi new file mode 100644 index 0000000000..a1c97228a4 --- /dev/null +++ b/contrib/python/tornado/tornado-4/tornado/platform/auto.pyi @@ -0,0 +1,4 @@ +# auto.py is full of patterns mypy doesn't like, so for type checking +# purposes we replace it with interface.py. + +from .interface import * diff --git a/contrib/python/tornado/tornado-4/tornado/speedups.pyi b/contrib/python/tornado/tornado-4/tornado/speedups.pyi new file mode 100644 index 0000000000..9e8def483d --- /dev/null +++ b/contrib/python/tornado/tornado-4/tornado/speedups.pyi @@ -0,0 +1 @@ +def websocket_mask(mask: bytes, data: bytes) -> bytes: ... |