# test attrtuple# we can't test this type directly so we use sys.implementation objectimportsyst=sys.implementation# It can be just a normal tuple on small portstry:t.nameexceptAttributeError:print("SKIP")raiseSystemExit# test printing of attrtupleprint(str(t).find("version=")>0)# test read attrprint(isinstance(t.name,str))