sh_cpl/src/cpl_query/enumerable/__init__.py

31 lines
779 B
Python
Raw Normal View History

2022-09-13 19:38:16 +02:00
# -*- coding: utf-8 -*-
"""
cpl-query sh-edraft Common Python library Query
~~~~~~~~~~~~~~~~~~~
sh-edraft Common Python library Python integrated Queries
:copyright: (c) 2021 - 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_query.enumerable'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
2022-09-18 11:37:50 +02:00
__version__ = '2022.10rc2'
2022-09-13 19:38:16 +02:00
from collections import namedtuple
# imports:
2022-09-14 13:23:23 +02:00
from .enumerable import Enumerable
from .enumerable_abc import EnumerableABC
from .ordered_enumerable import OrderedEnumerable
from .ordered_enumerable_abc import OrderedEnumerableABC
2022-09-13 19:38:16 +02:00
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2022-09-18 11:37:50 +02:00
version_info = VersionInfo(major='2022', minor='10', micro='rc2')