Первый коммит: настройка окружения

This commit is contained in:
2025-05-15 00:16:55 +03:00
commit 52289bca1f
1055 changed files with 181137 additions and 0 deletions
@@ -0,0 +1,6 @@
__all__ = ["Mapping", "Sequence"]
try:
from collections.abc import Mapping, Sequence
except ImportError:
from collections import Mapping, Sequence