# test errno's and uerrno moduletry:importuerrnoexceptImportError:print("SKIP")importsyssys.exit()# check that constants exist and are integersprint(type(uerrno.EIO))# check that errors are rendered in a nice waymsg=str(OSError(uerrno.EIO))print(msg[:7],msg[-5:])