Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /jana2/src/python/externals/pybind11-2.10.3/pybind11/_version.py was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 from typing import Union
0002 
0003 
0004 def _to_int(s: str) -> Union[int, str]:
0005     try:
0006         return int(s)
0007     except ValueError:
0008         return s
0009 
0010 
0011 __version__ = "2.10.3"
0012 version_info = tuple(_to_int(s) for s in __version__.split("."))