diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:12:41 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:12:41 (GMT) |
commit | 9f8a8910a415e31808debe6e9fed7f7c3638d42a (patch) | |
tree | ffa59e04328fee48f702a8f1ec628a8a83e7b881 /Lib/smtplib.py | |
parent | 72dcb0a7658c6dd99c2798b515c76e8cb311dbf6 (diff) | |
download | cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.zip cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.gz cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.bz2 |
Escaped backslashes in docstrings.
Diffstat (limited to 'Lib/smtplib.py')
-rwxr-xr-x | Lib/smtplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py index fa7f9e6..99ffdee 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -518,8 +518,8 @@ class SMTP: Raises SMTPDataError if there is an unexpected reply to the DATA command; the return value from this method is the final response code received when the all data is sent. If msg - is a string, lone '\r' and '\n' characters are converted to - '\r\n' characters. If msg is bytes, it is transmitted as is. + is a string, lone '\\r' and '\\n' characters are converted to + '\\r\\n' characters. If msg is bytes, it is transmitted as is. """ self.putcmd("data") (code, repl) = self.getreply() |