Techt3o's picture
45523e4c6d179b4a6cb59cbd723522dfca93224ef225a4e21b493fe9ea37a2ab
43605c2 verified
raw
history blame
214 Bytes
# -*- coding: utf-8 -*-
def _to_int(s):
try:
return int(s)
except ValueError:
return s
__version__ = "2.9.2"
version_info = tuple(_to_int(s) for s in __version__.split("."))