μHAL (v2.8.22)
Part of the IPbus software repository
Loading...
Searching...
No Matches
python
pybind11
pybind11
_version.py
Go to the documentation of this file.
1
from
typing
import
Union
2
3
4
def
_to_int
(s: str) -> Union[int, str]:
5
try
:
6
return
int(s)
7
except
ValueError:
8
return
s
9
10
11
__version__ =
"2.10.4"
12
version_info =
tuple
(
_to_int
(s)
for
s
in
__version__.split(
"."
))
tuple
Definition:
pytypes.h:1667
pybind11._version._to_int
def _to_int(s)
Definition:
_version.py:4
Generated on Wed Jan 7 2026 21:50:53 for μHAL (v2.8.22) by
1.9.5