Changeset 243
- Timestamp:
- 2003-06-09 12:34:09 (6 years ago)
- Files:
-
- trunk/ftp_file.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ftp_file.py
r242 r243 34 34 """ 35 35 36 # $Id: ftp_file.py,v 1. 5 2003/06/09 12:32:00schwa Exp $36 # $Id: ftp_file.py,v 1.6 2003/06/09 12:34:09 schwa Exp $ 37 37 38 38 import ftp_error … … 197 197 self._fo.writelines(lines) 198 198 return 199 # we can't modify the list of lines in-place, as in the 200 # `readlines` method; that would modify the original list, 201 # given as argument `lines` 199 202 for line in lines: 200 203 self._fo.write( _python_to_crlf_linesep(line) )
