Lines Matching full:parts
102 parts = NLCRE_crack.split(data)
107 self._partial = parts.pop()
110 if not self._partial and parts and parts[-1].endswith('\r'):
111 self._partial = parts.pop(-2)+parts.pop()
112 # parts is a list of strings, alternating between the line contents
116 for i in range(len(parts) // 2):
117 lines.append(parts[i*2] + parts[i*2+1])
338 # We saw a boundary separating two parts. Consume any
341 # body parts within such double boundaries.