summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-07-09 21:24:31 (GMT)
committerBarry Warsaw <barry@python.org>2000-07-09 21:24:31 (GMT)
commita1ae88432d506f4d37f5e989cebafc1473718d4f (patch)
treea6892736a2a20f5b4def29bba5a77b89cec0a32c
parent620f37723ffe02f7b550aaf8386fcd62f30f6db1 (diff)
downloadcpython-a1ae88432d506f4d37f5e989cebafc1473718d4f.zip
cpython-a1ae88432d506f4d37f5e989cebafc1473718d4f.tar.gz
cpython-a1ae88432d506f4d37f5e989cebafc1473718d4f.tar.bz2
Use TQSQ (triple quoted single quote) module docstring for better
font-locking. This complets the merge with Mailman's version.
-rwxr-xr-xLib/smtplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/smtplib.py b/Lib/smtplib.py
index 4462d62..c7865ad 100755
--- a/Lib/smtplib.py
+++ b/Lib/smtplib.py
@@ -1,6 +1,6 @@
#! /usr/bin/env python
-"""SMTP/ESMTP client class.
+'''SMTP/ESMTP client class.
This should follow RFC 821 (SMTP) and RFC 1869 (ESMTP).
@@ -29,7 +29,7 @@ Example:
>>> s.getreply()
(250, "Somebody OverHere <somebody@here.my.org>")
>>> s.quit()
-"""
+'''
# Author: The Dragon De Monsyne <dragondm@integral.org>
# ESMTP support, test code and doc fixes added by