Home | History | Annotate | Download | only in test

Lines Matching full:tobuf

362                 fobj.write(tarinfo.tobuf())
1948 data = tarfile.TarInfo("foo").tobuf()
1952 data = tarfile.TarInfo("foo").tobuf()
1973 tarinfo.tobuf(tarfile.USTAR_FORMAT)
1977 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
1981 tarinfo.tobuf(tarfile.USTAR_FORMAT)
1985 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
1989 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
1994 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
1999 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.USTAR_FORMAT)
2003 tarinfo.tobuf(tarfile.GNU_FORMAT)
2007 tarinfo.tobuf(tarfile.GNU_FORMAT)
2012 self.assertRaises(ValueError, tarinfo.tobuf, tarfile.GNU_FORMAT)
2016 tarinfo.tobuf(tarfile.PAX_FORMAT)
2020 tarinfo.tobuf(tarfile.PAX_FORMAT)
2024 tarinfo.tobuf(tarfile.PAX_FORMAT)
2391 data = bz2.compress(tarfile.TarInfo("foo").tobuf())