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

Lines Matching refs:chunk

513     PATTERN = re.compile(r'^(?P<chunk>[^\r\n]+)|(?P<newline>\n|\r\n?)')
581 # The pattern returns either a line chunk or a newline, but not
596 chunk = match.group('chunk')
598 chunk = chunk[: limit - len(line)]
600 self._offset += len(chunk)
601 line += chunk
608 chunk = self.read(n)
609 self._offset -= len(chunk)