/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/prompt-toolkit/py3/prompt_toolkit/data_structures.py
18 строк
212 B
wilytiger
support building opensource nbs with ya make
09 окт 2023, 17:33
09 окт 2023, 17:33
759d542
Код
Авторство
О чём код?
from __future__ import annotations from typing import NamedTuple __all__ = [ "Point", "Size", ] class Point(NamedTuple): x: int y: int class Size(NamedTuple): rows: int columns: int