[Python-Dev] RE: [Idle-dev] Forward progress with full backward compatibility

Fredrik Lundh Fredrik Lundh" <effbot@telia.com
Thu, 13 Apr 2000 08:24:17 +0200


Mark Hammond wrote:
> Nah - a comparable number :-)

tuples can also be compared.

> if sys.hexversion >=3D 0x01060100: # Require Python 1.6 or later!

if sys.versiontuple >=3D (1, 6, 1):
    ...

</F>