summaryrefslogtreecommitdiffstats
path: root/Lib/multifile.py
Commit message (Collapse)AuthorAgeFilesLines
* Back out multifile.py 1.19 and 1.20. Fixes #514676.Martin v. Löwis2002-09-221-16/+1
|
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-2/+1
|
* Martijn Pieters convinced me that when readline() strips the trailingGuido van Rossum2001-10-051-2/+5
| | | | newline from a multifile part, it should also strip a trailing \r\n.
* SF bug #417176 (Martijn Pieters): MultiFile.read() includes CRLFGuido van Rossum2001-09-181-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öwis2001-08-021-2/+0
|
* Multifile.read(): Fix a broken conversion to string methods.Fred Drake2001-03-121-1/+1
| | | | This closes SF bug #407777.
* String method conversion.Eric S. Raymond2001-02-091-6/+2
|
* added several more __all__ listsSkip Montanaro2001-02-061-0/+2
|
* Whitespace normalization.Tim Peters2001-01-141-130/+130
|
* Remove superfluous semicolonsAndrew M. Kuchling2000-12-231-1/+1
|
* Update the code to better reflect recommended style:Fred Drake2000-12-121-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 Drake2000-08-171-1/+2
|
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-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 Rossum2000-02-041-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 Rossum1998-06-291-3/+3
|
* Improved by Eric Raymond.Guido van Rossum1998-06-291-18/+29
|
* Patch by Eric Raymond: add an optional 'seekable' flag to theGuido van Rossum1998-06-231-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 Rossum1998-03-261-9/+9
|
* Support 'whence' parameter to seek().Guido van Rossum1998-03-251-2/+11
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-0/+11
|
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-171-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 Rossum1992-07-131-0/+118