From: Barry Warsaw Date: Sun, 9 Jul 2000 21:24:31 +0000 (+0000) Subject: Use TQSQ (triple quoted single quote) module docstring for better X-Git-Tag: v2.0b1~948 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1ae88432d506f4d37f5e989cebafc1473718d4f;p=thirdparty%2FPython%2Fcpython.git Use TQSQ (triple quoted single quote) module docstring for better font-locking. This complets the merge with Mailman's version. --- diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 4462d620d387..c7865ad5036f 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 ") >>> s.quit() -""" +''' # Author: The Dragon De Monsyne # ESMTP support, test code and doc fixes added by