diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2007-01-05 14:24:36 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2007-01-05 14:24:36 +0000 |
commit | 3b015c46a5f12322839512d54e15f51f5e10d3e4 (patch) | |
tree | 32c497f598acb712e681a91b53b166b1cf6c826f /Lib/difflib.py | |
parent | a6e0f502ea99545385264fafb73c4134712c35be (diff) | |
download | cpython-git-3b015c46a5f12322839512d54e15f51f5e10d3e4.tar.gz |
[Bug #1622533] Make docstrings raw strings because they contain control characters (\0, \1)
Diffstat (limited to 'Lib/difflib.py')
-rw-r--r-- | Lib/difflib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py index 3e28b18bf4..d1c29318a6 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -1311,7 +1311,7 @@ def ndiff(a, b, linejunk=None, charjunk=IS_CHARACTER_JUNK): def _mdiff(fromlines, tolines, context=None, linejunk=None, charjunk=IS_CHARACTER_JUNK): - """Returns generator yielding marked up from/to side by side differences. + r"""Returns generator yielding marked up from/to side by side differences. Arguments: fromlines -- list of text lines to compared to tolines |