diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2007-01-05 14:22:17 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2007-01-05 14:22:17 (GMT) |
commit | 882680462c937185702868c2ad3e61aed7f2cae1 (patch) | |
tree | e81c084822239d431350d98cb151290af1aca113 /Lib/difflib.py | |
parent | 1f8c634a5308a497918db1fa8a0940da4dbd900d (diff) | |
download | cpython-882680462c937185702868c2ad3e61aed7f2cae1.zip cpython-882680462c937185702868c2ad3e61aed7f2cae1.tar.gz cpython-882680462c937185702868c2ad3e61aed7f2cae1.tar.bz2 |
[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 3e28b18..d1c2931 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 |