Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update to Python 2.3, getting rid of backward compatiblity crud. | Barry Warsaw | 2004-05-09 | 1 | -20/+5 |
| | |||||
* | Bump version number to 2.5.5 | Barry Warsaw | 2003-12-30 | 1 | -1/+1 |
| | |||||
* | Bump the version number for the standalone mimelib package. | Barry Warsaw | 2003-08-19 | 1 | -1/+1 |
| | |||||
* | _make_boundary(): Fix for SF bug #745478, broken boundary calculation | Barry Warsaw | 2003-05-29 | 1 | -1/+1 |
| | | | | | | | | | in some locales. This code simplifies the boundary algorithm to use randint() which is what we wanted anyway. Bump package version to 2.5.3. Backport candidate for Python 2.2.3 | ||||
* | Bump version number | Barry Warsaw | 2003-05-08 | 1 | -1/+1 |
| | |||||
* | Bump to version 2.5.1 | Barry Warsaw | 2003-03-30 | 1 | -1/+1 |
| | |||||
* | Temporary bump of the version number. | Barry Warsaw | 2003-03-26 | 1 | -1/+1 |
| | |||||
* | Email version 2.5 -- I will now backport this to Python 2.2.3. | Barry Warsaw | 2003-03-21 | 1 | -1/+1 |
| | |||||
* | beta 1 | Barry Warsaw | 2003-03-11 | 1 | -1/+1 |
| | |||||
* | Actually, make this 2.5a1 since it will include API changes that may | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | | | | need more vetting, and it will be included in Python 2.3a1. | ||||
* | Bump to 2.5 | Barry Warsaw | 2002-12-30 | 1 | -1/+1 |
| | |||||
* | Bump __version__ (yes, to 2.5 "minus") | Barry Warsaw | 2002-11-05 | 1 | -1/+1 |
| | |||||
* | Bump the __version__ | Barry Warsaw | 2002-10-14 | 1 | -1/+1 |
| | |||||
* | Bump version number to 2.4.2 to pick up the latest minor bug fixes. | Barry Warsaw | 2002-10-10 | 1 | -1/+1 |
| | |||||
* | Bump the version to 2.4.1 (not 2.5 as previously mentioned) to sync it | Barry Warsaw | 2002-10-07 | 1 | -1/+1 |
| | | | | with the standalone mimelib package. | ||||
* | __all__: Updated | Barry Warsaw | 2002-09-30 | 1 | -20/+22 |
| | |||||
* | The ansi_x3.4_1968 encoding is an alias for ascii, but isn't known in | Barry Warsaw | 2002-09-30 | 1 | -0/+9 |
| | | | | | | | | Python 2.1.3. However it's required by the email tests suite, so poke it into the encodings aliases if it's missing. The is apparently the approved API for doing so. Now we can remove the hexversion shortcircuits in the test suite. | ||||
* | Code cleanup and add docstrings. | Barry Warsaw | 2002-09-28 | 1 | -2/+17 |
| | |||||
* | __version__: Bump to 2.4 | Barry Warsaw | 2002-09-25 | 1 | -9/+16 |
| | | | | | | | | | | | Move the imports of Parser and Message inside the message_from_string() and message_from_file() functions. This way just "import email" won't suck in most of the submodules of the package. Note: this will break code that relied on "import email" giving you a bunch of the submodules, but that was never documented and should not have been relied on. | ||||
* | Bump to 2.3.1 to pick up the missing file. | Barry Warsaw | 2002-09-12 | 1 | -1/+1 |
| | |||||
* | Bump version number to 2.3 | Barry Warsaw | 2002-08-20 | 1 | -1/+1 |
| | |||||
* | message_from_string(), message_from_file(): The consensus on the | Barry Warsaw | 2002-07-19 | 1 | -2/+2 |
| | | | | | mimelib-devel list is that non-strict parsing should be the default. Make it so. | ||||
* | Anthony Baxter's patch to expose the parser's `strict' flag in these | Barry Warsaw | 2002-07-18 | 1 | -5/+5 |
| | | | | convenience functions. Closes SF # 583188 (python project). | ||||
* | With the addition of Oleg's support for RFC 2231, it's time to bump | Barry Warsaw | 2002-07-09 | 1 | -1/+1 |
| | | | | the version number to 2.1. | ||||
* | Bump to version 2.0.5, and also use absolute import paths. | Barry Warsaw | 2002-06-01 | 1 | -3/+3 |
| | |||||
* | Bump to version 2.0.4 | Barry Warsaw | 2002-05-22 | 1 | -1/+1 |
| | |||||
* | Complete a merge of the mimelib project and the Python cvs codebases | Barry Warsaw | 2002-05-19 | 1 | -1/+1 |
| | | | | | | | | | | | | | for the email package. The former is now just a shell project that has some extra files for packaging for independent use (e.g. setup.py and README). Added a compatibility layer so that the same API can be used in Python 2.1 and 2.2/2.3 with the major differences shuffled off into helper modules (_compat21.py and _compat22.py). Also bumped the package version number to 2.0.3 for some fixes to be checked in momentarily. | ||||
* | Sync'ing with standalone email package 2.0.1. This adds support for | Barry Warsaw | 2002-04-10 | 1 | -3/+7 |
| | | | | | | | | | non-us-ascii character sets in headers and bodies. Some API changes (with DeprecationWarnings for the old APIs). Better RFC-compliant implementations of base64 and quoted-printable. Updated test cases. Documentation updates to follow (after I finish writing them ;). | ||||
* | Fix __all__ to the current list of exported modules (must pass the | Barry Warsaw | 2001-10-09 | 1 | -3/+4 |
| | | | | tests in test_email.py). | ||||
* | Give me back my page breaks. | Barry Warsaw | 2001-10-04 | 1 | -1/+1 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-10-04 | 1 | -1/+1 |
| | |||||
* | The email package version 1.0, prototyped as mimelib | Barry Warsaw | 2001-09-23 | 1 | -0/+34 |
<http://sf.net/projects/mimelib>. There /are/ API differences between mimelib and email, but most of the implementations are shared (except where cool Py2.2 stuff like generators are used). |