mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
9 lines
203 B
Python
9 lines
203 B
Python
from re import Pattern
|
|
from typing import Callable, Iterator
|
|
|
|
component_re: Pattern
|
|
replace: Callable
|
|
|
|
def _parse_version_parts(s: str) -> Iterator[str]: ...
|
|
def parse_version(s: str) -> tuple[str]: ...
|