PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/semver
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __about__.py
↓
X
📄 __init__.py
↓
X
📄 __main__.py
↓
X
📁 __pycache__/
X
📄 _deprecated.py
↓
X
📄 _types.py
↓
X
📄 cli.py
↓
X
📄 py.typed
↓
X
📄 version.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: _types.py
"""Typing for semver.""" from functools import partial from typing import Union, Optional, Tuple, Dict, Iterable, Callable, TypeVar VersionPart = Union[int, Optional[str]] VersionTuple = Tuple[int, int, int, Optional[str], Optional[str]] VersionDict = Dict[str, VersionPart] VersionIterator = Iterable[VersionPart] String = Union[str, bytes] F = TypeVar("F", bound=Callable) Decorator = Union[Callable[..., F], partial]
SIMPAN PERUBAHAN