diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 13:35:25 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2012-08-12 13:35:25 (GMT) |
commit | 6cbe405a20f0cf542792fe7f8b3859dde99d37f5 (patch) | |
tree | 12280abfb7d509bdd987b2ad7f17fb5cad8c0275 /Doc | |
parent | 985104a20c85e225523489ab8d7d06b6474bb21d (diff) | |
download | cpython-6cbe405a20f0cf542792fe7f8b3859dde99d37f5.zip cpython-6cbe405a20f0cf542792fe7f8b3859dde99d37f5.tar.gz cpython-6cbe405a20f0cf542792fe7f8b3859dde99d37f5.tar.bz2 |
escape '\'; thanks to Steve Holden from docs@
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/smtpd.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/smtpd.rst b/Doc/library/smtpd.rst index c391f71..48da5d0 100644 --- a/Doc/library/smtpd.rst +++ b/Doc/library/smtpd.rst @@ -109,7 +109,7 @@ SMTPChannel Objects .. attribute:: received_lines Holds a list of the line strings (decoded using UTF-8) received from - the client. The lines have their "\r\n" line ending translated to "\n". + the client. The lines have their "\\r\\n" line ending translated to "\\n". .. attribute:: smtp_state |