python3-xattr has an xattr class that can be used like a dict (and
thus call .items() to behave like pyxattr's xattr.get_all()).  A
wrapper function like this would work:

def xattr_get_all(path):
    try:
        return xattr.get_all(path)
    except AttributeError:
        return xattr.xattr(path).items()

--
dwfreed

_______________________________________________
Reproducible-builds mailing list
Reproducible-builds@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/reproducible-builds

Reply via email to