mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
645d83813b
* feat: basic typing support * docs: mention syncing as suggested by @rwgk * docs: update changelog * docs: copy of warning in limitations
7 lines
137 B
Python
7 lines
137 B
Python
from typing import Union, Tuple
|
|
|
|
def _to_int(s: str) -> Union[int, str]: ...
|
|
|
|
__version__: str
|
|
version_info: Tuple[Union[int, str], ...]
|