Vasco Gervasi <yellow...@mailbox.org> added the comment:
Yes, you can close it. For future reference: tar_reset = "/tmp/py_tar_reset.tar" def reset(tarinfo): tarinfo.uid = tarinfo.gid = 0 tarinfo.uname = tarinfo.gname = "root" tarinfo.mtime = 1 return tarinfo with tarfile.open(tar_reset, "w:xz") as tar_obj: tar_obj.add("/tmp/a", arcname="a", filter=reset) ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue44262> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com