|
||||
File indexing completed on 2025-01-18 10:17:50
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("."))
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |