This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients doko, eric.araujo, eysispeisi, georg.brandl, itkach, koen, lars.gustaebel, loewis, nadeem.vawda, nikratio, pitrou, proyvind, v+python, vstinner
Date 2011-12-08.12:00:53
SpamBayes Score 0.006262291
Marked as misclassified No
Message-id <1323345653.98.0.791835362176.issue5689@psf.upfronthosting.co.za>
In-reply-to
Content
Some comments about 2011-12-08-tarfile-lzma.diff:

> elif self.buf.startswith(b"\x5d\x00\x00\x80") or self.buf.startswith(b"...

Micro-optimization: you can use self.buf.startswith((b"\x5d\x00\x00\x80", b"\xfd7zXZ")) here.

> raise ValueError("mode must be 'r' or 'w'.")

Error messages usually don't end with a dot (or am I wrong?).

It would be better to use a skip instead of just return here:

def test_no_name_argument(self):
  if self.mode.endswith("bz2") or self.mode.endswith("xz"):
    # BZ2File and LZMAFile have no name attribute.
    return

In _Stream.__init__, for zlib:

> self.exception = zlib.error

Could you add a test for this change?
History
Date User Action Args
2011-12-08 12:00:54vstinnersetrecipients: + vstinner, loewis, georg.brandl, doko, lars.gustaebel, pitrou, koen, nadeem.vawda, eric.araujo, v+python, proyvind, nikratio, itkach, eysispeisi
2011-12-08 12:00:53vstinnersetmessageid: <1323345653.98.0.791835362176.issue5689@psf.upfronthosting.co.za>
2011-12-08 12:00:53vstinnerlinkissue5689 messages
2011-12-08 12:00:53vstinnercreate