Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -1/+1 |
| | |||||
* | Fix for SF bug #425868. | unknown | 2001-07-04 | 1 | -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 Rossum | 2001-04-10 | 1 | -1/+1 |
| | | | | This came out of SF bug #411881. | ||||
* | String method cleanup. | Eric S. Raymond | 2001-02-10 | 1 | -1/+1 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -7/+7 |
| | |||||
* | added a few more __all__ lists | Skip Montanaro | 2001-01-25 | 1 | -0/+2 |
| | | | | test___all__.py: fail silently in check_all if the module can't be imported | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -399/+398 |
| | |||||
* | Actually, the previous batch's comment should have been different; | Guido van Rossum | 2000-02-04 | 1 | -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 Rossum | 2000-02-04 | 1 | -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 Rossum | 1998-08-07 | 1 | -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 Rossum | 1998-02-27 | 1 | -0/+6 |
| | |||||
* | Sjoerd sez: global substitute \240 with \177. | Guido van Rossum | 1997-12-02 | 1 | -4/+4 |
| | |||||
* | New version from Sjoerd, small bugfix + optimizations. | Guido van Rossum | 1997-10-30 | 1 | -24/+28 |
| | |||||
* | re -> regex conversions by Sjoerd. | Guido van Rossum | 1997-10-24 | 1 | -66/+65 |
| | |||||
* | Fixed (and documented, see Doc/libmimify.tex) mime_decode_header() and | Guido van Rossum | 1997-08-14 | 1 | -4/+6 |
| | | | | mime_encode_header(). | ||||
* | Mention decode_base64 in example. | Guido van Rossum | 1997-07-30 | 1 | -1/+1 |
| | |||||
* | base64 support by Sjoerd. | Guido van Rossum | 1997-04-11 | 1 | -11/+25 |
| | |||||
* | Avoid crashes with nested multipart/mixed parts. | Guido van Rossum | 1997-03-20 | 1 | -1/+8 |
| | |||||
* | /usr/local/bin/python -> /usr/bin/env python | Guido van Rossum | 1996-11-27 | 1 | -1/+1 |
| | |||||
* | small fix by Sjoerd | Guido van Rossum | 1996-06-10 | 1 | -3/+12 |
| | |||||
* | minor fix to mime header regex --Sjoerd | Guido van Rossum | 1996-05-28 | 1 | -1/+1 |
| | |||||
* | Module to convert a mail message to or from quoted-printable. The | Sjoerd Mullender | 1996-02-14 | 1 | -0/+415 |
message may consist of several MIME parts in which case each part is converted independent of the others. Only converts when necessary. |