> I don't think so. Paranoid in me said in this case we should use try-except. > Why for? sys.hexversion do the same thing and code less. You do know you can compare it as a tuple? if sys.version_info < (2, 4): -- Martin