Lines Matching refs:fromfile
1095 def unified_diff(a, b, fromfile='', tofile='', fromfiledate='',
1115 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
1136 _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm)
1143 yield '--- {}{}{}'.format(fromfile, fromdate, lineterm)
1180 def context_diff(a, b, fromfile='', tofile='',
1200 strings for 'fromfile', 'tofile', 'fromfiledate', and 'tofiledate'.
1224 _check_types(a, b, fromfile, tofile, fromfiledate, tofiledate, lineterm)
1232 yield '*** {}{}{}'.format(fromfile, fromdate, lineterm)
1273 def diff_bytes(dfunc, a, b, fromfile=b'', tofile=b'',
1293 fromfile = decode(fromfile)
1299 lines = dfunc(a, b, fromfile, tofile, fromfiledate, tofiledate, n, lineterm)