[issue12158] platform: add linux_version()

STINNER Victor report at bugs.python.org
Mon May 23 15:06:07 CEST 2011


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

> The returned value should be a version string in a fixed format,
> not a tuple. I'd suggest to use _norm_version() for this.

How do you compare version strings? I prefer tuples, as sys.version_info, because the comparaison is more natural:

>>> '2.6.9' > '2.6.20'
True
>>> (2, 6, 9) > (2, 6, 20)
False

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12158>
_______________________________________


More information about the Python-bugs-list mailing list