Home
last modified time | relevance | path

Searched refs:context_diff (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython3/Lib/test/
Dtest_difflib.py278 cd = difflib.context_diff(*args, lineterm='')
288 cd = difflib.context_diff(*args, lineterm='')
349 context = difflib.context_diff
382 context = difflib.context_diff
430 context = difflib.context_diff
/external/python/cpython2/Lib/test/
Dtest_difflib.py218 cd = difflib.context_diff(*args, lineterm='')
228 cd = difflib.context_diff(*args, lineterm='')
/external/python/cpython2/Tools/scripts/
Ddiff.py47 diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
/external/python/cpython3/Tools/scripts/
Ddiff.py55 diff = difflib.context_diff(fromlines, tolines, fromfile, tofile, fromdate, todate, n=n)
/external/tensorflow/tensorflow/python/autograph/pyct/
Dorigin_info.py145 diff = difflib.context_diff(
/external/python/cpython3/Doc/library/
Ddifflib.rst147 .. function:: context_diff(a, b, fromfile='', tofile='', fromfiledate='', tofiledate='', n=3, linet…
173 >>> sys.stdout.writelines(context_diff(s1, s2, fromfile='before.py', tofile='after.py'))
324 :func:`context_diff`.
/external/python/cpython2/Doc/library/
Ddifflib.rst139 .. function:: context_diff(a, b[, fromfile][, tofile][, fromfiledate][, tofiledate][, n][, lineterm…
165 >>> for line in context_diff(s1, s2, fromfile='before.py', tofile='after.py'):
775 diff = difflib.context_diff(fromlines, tolines, fromfile, tofile,
/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
DTestRunner.py435 func = difflib.unified_diff if unified_diff else difflib.context_diff
468 func = difflib.unified_diff if unified_diff else difflib.context_diff
/external/libchrome/base/android/jni_generator/
Djni_generator_tests.py88 for line in difflib.context_diff(stripped_golden, stripped_generated):
/external/python/cpython2/Lib/
Ddifflib.py1240 def context_diff(a, b, fromfile='', tofile='', function
Ddoctest.py1645 diff = difflib.context_diff(want_lines, got_lines, n=2)
/external/python/cpython3/Lib/
Ddifflib.py1221 def context_diff(a, b, fromfile='', tofile='', function
Ddoctest.py1684 diff = difflib.context_diff(want_lines, got_lines, n=2)
/external/python/cpython2/Misc/
DHISTORY2871 case of comparing two empty lists. This affected both context_diff() and
4092 - difflib.py has two new functions: context_diff() and unified_diff().
/external/python/cpython3/Misc/
DHISTORY9810 - Issue #11747: Fix range formatting in difflib.context_diff() and
20255 case of comparing two empty lists. This affected both context_diff() and
21476 - difflib.py has two new functions: context_diff() and unified_diff().