Home | History | Annotate | Download | only in Lib

Lines Matching refs:tofile

1136 def unified_diff(a, b, fromfile='', tofile='', fromfiledate='',
1156 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
1177 _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm)
1185 yield '+++ {}{}{}'.format(tofile, todate, lineterm)
1221 def context_diff(a, b, fromfile='', tofile='',
1241 strings for 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
1265 _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm)
1274 yield '--- {}{}{}'.format(tofile, todate, lineterm)
1314 def diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'',
1335 tofile = decode(tofile)
1340 lines = dfunc(a, b, fromfile, tofile, fromfiledate, tofiledate, n, lineterm)