mirror of
https://github.com/niess/python-appimage.git
synced 2025-07-21 21:01:15 +02:00
8 lines
163 B
Python
8 lines
163 B
Python
__all__ = ['tonumbers']
|
|
|
|
|
|
def tonumbers(s):
|
|
'''Convert a version string to a list of numbers, for comparison
|
|
'''
|
|
return [int(v) for v in s.split('.')]
|