Home | History | Annotate | Download | only in codereview

Lines Matching refs:lines

356 		lines = msg.splitlines()
357 if len(lines) >= 2:
358 msg = lines[0]
359 patchset = lines[1].strip()
360 patches = [x.split(" ", 1) for x in lines[2:]]
628 # some lines with spaces, some with tabs. Only a heuristic
688 # Lines beginning with # are ignored.
979 # CONTRIBUTORS is a list of lines like:
1490 # Earlier lines might be part of the user-written description.
1624 lines = patch.splitlines(True) # True = keep \n
1626 for i in range(len(lines)):
1627 line = lines[i]
1648 lines[i] = "@@ -%d,%d +%d,%d @@\n" % (n1, len1, n2, len2)
1650 newpatch = ''.join(lines)
1656 # lines [n, n+len) were modified, and after that range the
1670 lines [n, n+len).
1671 # It returns an error if those lines were rewritten by the patch.
3080 lines = []
3084 lines.append('--' + BOUNDARY)
3085 lines.append('Content-Disposition: form-data; name="%s"' % key)
3086 lines.append('')
3087 lines.append(value)
3092 lines.append('--' + BOUNDARY)
3093 lines.append('Content-Disposition: form-data; name="%s"; filename="%s"' % (key, filename))
3094 lines.append('Content-Type: %s' % GetContentType(filename))
3095 lines.append('')
3096 lines.append(value)
3097 lines.append('--' + BOUNDARY + '--')
3098 lines.append('')
3099 body = CRLF.join(lines)
3217 are retrieved based on lines that start with "Index:" or
3557 lines = response_body.splitlines()
3558 if not lines or lines[0] != "OK":
3561 rv.append([lines[1], patch[0]])