Added sequence converters

This commit is contained in:
2022-09-14 13:23:23 +02:00
parent e868a120f0
commit f0ed0bd2e1
9 changed files with 91 additions and 5 deletions

View File

@@ -21,6 +21,10 @@ from collections import namedtuple
# imports:
from .enumerable import Enumerable
from .enumerable_abc import EnumerableABC
from .ordered_enumerable import OrderedEnumerable
from .ordered_enumerable_abc import OrderedEnumerableABC
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='2022', minor='10', micro='9')