/
clever-bach
/
flink
Обзор
Документация
Войти
/
clever-bach
/
flink
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
flink-python/pyflink/__init__.py
58 строк
2 KB
Yun Tang
[FLINK-38094][python] Introduce pyflink.__version__
15 июл 2025, 05:31
15 июл 2025, 05:31
d881387
Код
Авторство
О чём код?
################################################################################ # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. ################################################################################# import sys from functools import wraps __path__ = __import__("pkgutil").extend_path(__path__, __name__) # type: ignore if sys.version_info < (3, 6): raise RuntimeError( 'Python versions prior to 3.6 are not supported for PyFlink [' + str(sys.version_info) + '].') from pyflink.version import __version__ def keyword(func): """ A decorator that forces keyword arguments usage and store actual input keyword arguments in `_input_kwargs`. """ @wraps(func) def wrapper(self, **kwargs): self._input_kwargs = kwargs return func(self, **kwargs) return wrapper def add_version_doc(f, version): """ Annotates a function to append the version the function was added. """ import re indent_p = re.compile(r'\n( *)[^\n ]') original_doc = f.__doc__ or "" indents = indent_p.findall(original_doc) indent = ' ' * (min(len(indent) for indent in indents) if indents else 0) f.__doc__ = original_doc.rstrip() + "\n\n%s.. versionadded:: %s" % (indent, version) __all__ = [ "__version__", ]