]> granicus.if.org Git - python/commitdiff
Fix few typos.
authorFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 11 Nov 2011 18:35:42 +0000 (19:35 +0100)
committerFlorent Xicluna <florent.xicluna@gmail.com>
Fri, 11 Nov 2011 18:35:42 +0000 (19:35 +0100)
Lib/email/_parseaddr.py
Lib/imaplib.py
Lib/test/test_ast.py
Modules/Setup.dist

index 41694f9b1acac5d6903cdbfcf692cb02df9eb994..a295757281763489eed296ecf4adf65aee83204d 100644 (file)
@@ -178,7 +178,7 @@ class AddrlistClass:
     front of you.
 
     Note: this class interface is deprecated and may be removed in the future.
-    Use rfc822.AddressList instead.
+    Use email.utils.AddressList instead.
     """
 
     def __init__(self, field):
index 1022e77c4f6032180c5d684061ea5741b89e4a75..1fcba21176dca2ee9ab30458d492e3f72a1c8328 100644 (file)
@@ -1385,7 +1385,7 @@ def Time2Internaldate(date_time):
     """Convert date_time to IMAP4 INTERNALDATE representation.
 
     Return string in form: '"DD-Mmm-YYYY HH:MM:SS +HHMM"'.  The
-    date_time argument can be a number (int or float) represening
+    date_time argument can be a number (int or float) representing
     seconds since epoch (as returned by time.time()), a 9-tuple
     representing local time (as returned by time.localtime()), or a
     double-quoted string.  In the last case, it is assumed to already
index 7d1649c1155c78f12080b2ef4e7872fb33785368..2ba3ea552d4d54f9b26f0ddabb58ac2bf936d9f7 100644 (file)
@@ -290,7 +290,7 @@ class AST_Tests(unittest.TestCase):
         self.assertEqual(x.body, body)
 
     def test_nodeclasses(self):
-        # Zero arguments constructor explicitely allowed
+        # Zero arguments constructor explicitly allowed
         x = ast.BinOp()
         self.assertEqual(x._fields, ('left', 'op', 'right'))
 
index e1c8fe48f82f273d207754e51d0bb19b8972bc1c..9269ddf2869cd4626690f2b7d13d274d786ebdc3 100644 (file)
@@ -291,7 +291,7 @@ _symtable symtablemodule.c
 #syslog syslogmodule.c         # syslog daemon interface
 
 
-# Curses support, requring the System V version of curses, often
+# Curses support, requiring the System V version of curses, often
 # provided by the ncurses library.  e.g. on Linux, link with -lncurses
 # instead of -lcurses).
 #