New submission from Serhiy Storchaka: Error message in assertEqual() is not vary useful when compared long strings with long common prefix. It looks as:
'For the first time in his life h [truncated]...' != 'For the first time in his life h [truncated]...' With the proposed patch it will look as: 'For [25 chars]e he seemed to be vividly aware of his own existence.' != 'For [25 chars]e he felt humble. He perceived how misgui[105 chars]ers.' New algorithm splits strings on common prefix and differing suffixes, shortens every part if it is too long, and concatenates them back. So user always see the start and the end of string, and the place of first difference with some characters before and after. ---------- components: Tests files: assertEqual_shorten.patch keywords: patch messages: 197433 nosy: ezio.melotti, michael.foord, pitrou, serhiy.storchaka priority: normal severity: normal stage: patch review status: open title: unittest: more helpful truncating long strings type: enhancement versions: Python 3.4 Added file: http://bugs.python.org/file31712/assertEqual_shorten.patch _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue18996> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com