[issue27913] Difflib.ndiff (Problem on identification of changes as Diff Style)

2016-08-31 Thread vincenzo gisondi
vincenzo gisondi added the comment: Ok now it is all clear. Thank you very much, for your rapid and clear answer. -- ___ Python tracker ___

[issue27913] Difflib.ndiff (Problem on identification of changes as Diff Style)

2016-08-31 Thread SilentGhost
SilentGhost added the comment: Since there are more than a quarter of all characters changed between two sequences, they are considered sufficiently different and no by-character comparison is shown. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open ->

[issue27913] Difflib.ndiff (Problem on identification of changes as Diff Style)

2016-08-31 Thread vincenzo gisondi
New submission from vincenzo gisondi: I found an anomaly on identification of changes as Diff Style (^). There are the tests that i done: 1) First Test (only one character is different) >>> a = "Hello Vincenzo\n".splitlines(1) >>> b = "Hello Vincenza\n".splitlines(1) >>> a ['Hello