Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Deprecate the multifile module as per PEP 4. | Brett Cannon | 2008-05-12 | 1 | -0/+4 |
| | |||||
* | Stacks based on lists work better and read more clearly when they | Raymond Hettinger | 2004-05-04 | 1 | -8/+7 |
| | | | | grow and shrink on the right. | ||||
* | Back out multifile.py 1.19 and 1.20. Fixes #514676. | Martin v. Löwis | 2002-09-22 | 1 | -16/+1 |
| | |||||
* | Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i) | Raymond Hettinger | 2002-06-30 | 1 | -2/+1 |
| | |||||
* | Martijn Pieters convinced me that when readline() strips the trailing | Guido van Rossum | 2001-10-05 | 1 | -2/+5 |
| | | | | newline from a multifile part, it should also strip a trailing \r\n. | ||||
* | SF bug #417176 (Martijn Pieters): MultiFile.read() includes CRLF | Guido van Rossum | 2001-09-18 | 1 | -1/+13 |
| | | | | | | | | | boundary. Fixed by keeping a readahead buffer containing the next line. XXX We have no test suite for this. Maybe the new email package will help? | ||||
* | Patch #444359: Remove unused imports. | Martin v. Löwis | 2001-08-02 | 1 | -2/+0 |
| | |||||
* | Multifile.read(): Fix a broken conversion to string methods. | Fred Drake | 2001-03-12 | 1 | -1/+1 |
| | | | | This closes SF bug #407777. | ||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -6/+2 |
| | |||||
* | added several more __all__ lists | Skip Montanaro | 2001-02-06 | 1 | -0/+2 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -130/+130 |
| | |||||
* | Remove superfluous semicolons | Andrew M. Kuchling | 2000-12-23 | 1 | -1/+1 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -1/+1 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-17 | 1 | -1/+2 |
| | |||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | More trivial comment -> docstring transformations by Ka-Ping Yee, | Guido van Rossum | 2000-02-04 | 1 | -38/+41 |
| | | | | | | | | | | | | | | | | | | 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. | ||||
* | # Make tabnanny happy. | Guido van Rossum | 1998-06-29 | 1 | -3/+3 |
| | |||||
* | Improved by Eric Raymond. | Guido van Rossum | 1998-06-29 | 1 | -18/+29 |
| | |||||
* | Patch by Eric Raymond: add an optional 'seekable' flag to the | Guido van Rossum | 1998-06-23 | 1 | -11/+23 |
| | | | | | MultiFile constructor, and only do the posstack bookkeeping when it is true. | ||||
* | A few lines were indented using spaces instead of tabs -- fix them. | Guido van Rossum | 1998-03-26 | 1 | -9/+9 |
| | |||||
* | Support 'whence' parameter to seek(). | Guido van Rossum | 1998-03-25 | 1 | -2/+11 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -0/+11 |
| | |||||
* | * Mass change: get rid of all init() methods, in favor of __init__() | Guido van Rossum | 1993-12-17 | 1 | -3/+2 |
| | | | | | | | constructors. There is no backward compatibility. Not everything has been tested. * aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as comments) | ||||
* | New module to support decoding multipart messages (also see mimetools). | Guido van Rossum | 1992-07-13 | 1 | -0/+118 |