Home | History | Annotate | Download | only in python2.7

Lines Matching refs:raw

670             raw = self.fileobj.read(self.blocksize)
671 if not raw:
673 data = self.bz2obj.decompress(raw)
693 raw = self.bz2obj.compress(data)
694 self.fileobj.write(raw)
698 raw = self.bz2obj.flush()
699 self.fileobj.write(raw)
1512 if len(mode) > 1 or mode not in "raw":
1703 if len(mode) > 1 or mode not in "raw":