]> granicus.if.org Git - python/commitdiff
Use TQSQ (triple quoted single quote) module docstring for better
authorBarry Warsaw <barry@python.org>
Sun, 9 Jul 2000 21:24:31 +0000 (21:24 +0000)
committerBarry Warsaw <barry@python.org>
Sun, 9 Jul 2000 21:24:31 +0000 (21:24 +0000)
font-locking.  This complets the merge with Mailman's version.

Lib/smtplib.py

index 4462d620d387189a0439305c1dd943909c6ccb2c..c7865ad5036fc0f164309f11153dba4d59767354 100755 (executable)
@@ -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