summaryrefslogtreecommitdiffstats
path: root/Lib/mimify.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-3/+3
| | | | | | | | | There's one major and one minor category still unfixed: doctests are the major category (and I hope to be able to augment the refactoring tool to refactor bona fide doctests soon); other code generating print statements in strings is the minor category. (Oh, and I don't know if the compiler package works.)
* Get rid of many apply() calls.Guido van Rossum2003-02-271-1/+1
|
* Fix for SF bug #425868.unknown2001-07-041-3/+3
| | | | | | We should not depend on two spaces between words, so use the white space after the to-be-encoded word only as lookahead and don't actually consume it in the regular expression.
* Fix an unqualified except:.Guido van Rossum2001-04-101-1/+1
| | | | This came out of SF bug #411881.
* String method cleanup.Eric S. Raymond2001-02-101-1/+1
|
* String method conversion.Eric S. Raymond2001-02-091-7/+7
|
* added a few more __all__ listsSkip Montanaro2001-01-251-0/+2
| | | | test___all__.py: fail silently in check_all if the module can't be imported
* Whitespace normalization.Tim Peters2001-01-141-399/+398
|
* Actually, the previous batch's comment should have been different;Guido van Rossum2000-02-041-2/+2
| | | | | | | | | | *this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
* More trivial comment -> docstring transformations by Ka-Ping Yee,Guido van Rossum2000-02-041-13/+12
| | | | | | | | | | | | | | | | | | who writes: Here is batch 2, as a big collection of CVS context diffs. Along with moving comments into docstrings, i've added a couple of missing docstrings and attempted to make sure more module docstrings begin with a one-line summary. I did not add docstrings to the methods in profile.py for fear of upsetting any careful optimizations there, though i did move class documentation into class docstrings. The convention i'm using is to leave credits/version/copyright type of stuff in # comments, and move the rest of the descriptive stuff about module usage into module docstrings. Hope this is okay.
* [Sjoerd Mullender]Guido van Rossum1998-08-071-0/+8
| | | | | Fixed infinite loop when a message ends prematurely in some circumstances.
* Sjoerd writes: When a multipart message is incomplete, mimify crashes.Guido van Rossum1998-02-271-0/+6
|
* Sjoerd sez: global substitute \240 with \177.Guido van Rossum1997-12-021-4/+4
|
* New version from Sjoerd, small bugfix + optimizations.Guido van Rossum1997-10-301-24/+28
|
* re -> regex conversions by Sjoerd.Guido van Rossum1997-10-241-66/+65
|
* Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() andGuido van Rossum1997-08-141-4/+6
| | | | mime_encode_header().
* Mention decode_base64 in example.Guido van Rossum1997-07-301-1/+1
|
* base64 support by Sjoerd.Guido van Rossum1997-04-111-11/+25
|
* Avoid crashes with nested multipart/mixed parts.Guido van Rossum1997-03-201-1/+8
|
* /usr/local/bin/python -> /usr/bin/env pythonGuido van Rossum1996-11-271-1/+1
|
* small fix by SjoerdGuido van Rossum1996-06-101-3/+12
|
* minor fix to mime header regex --SjoerdGuido van Rossum1996-05-281-1/+1
|
* Module to convert a mail message to or from quoted-printable. TheSjoerd Mullender1996-02-141-0/+415
message may consist of several MIME parts in which case each part is converted independent of the others. Only converts when necessary.