Fix an inaccuracy in the comment
authorBarry Warsaw <barry@python.org>
Mon, 26 Aug 2002 16:44:56 +0000 (16:44 +0000)
committerBarry Warsaw <barry@python.org>
Mon, 26 Aug 2002 16:44:56 +0000 (16:44 +0000)
Lib/mailbox.py

index 1834177f701e8e8cac11021aa3c754ea9cbcaee2..62643944fa26b178b351938bc0fed51be7171874 100755 (executable)
@@ -137,8 +137,8 @@ class UnixMailbox(_Mailbox):
     # _search_end() may not be completely correct, because it doesn't check
     # that the two characters preceding "From " are \n\n or the beginning of
     # the file.  Fixing this would require a more extensive rewrite than is
-    # necessary.  For convenience, we've added a StrictUnixMailbox class which
-    # uses the older, more strict _fromlinepattern regular expression.
+    # necessary.  For convenience, we've added a PortableUnixMailbox class
+    # which uses the more lenient _fromlinepattern regular expression.
 
     _fromlinepattern = r"From \s*[^\s]+\s+\w\w\w\s+\w\w\w\s+\d?\d\s+" \
                        r"\d?\d:\d\d(:\d\d)?(\s+[^\s]+)?\s+\d\d\d\d\s*$"