Changeset 388 for python/vendor/current/Lib/rfc822.py
- Timestamp:
- Mar 19, 2014, 11:11:30 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/vendor/current/Lib/rfc822.py
r2 r388 35 35 lseek() system call doesn't work. For maximum portability, you should set the 36 36 seekable argument to zero to prevent that initial \code{tell} when passing in 37 an unseekable object such as a afile object created from a socket object. If37 an unseekable object such as a file object created from a socket object. If 38 38 it is 1 on entry -- which it is by default -- the tell() method of the open 39 39 file object is called once; if this raises an exception, seekable is reset to … … 213 213 rules, e.g. to strip trailing whitespace, or to recognize MH template 214 214 separators ('--------'). For convenience (e.g. for code reading from 215 sockets) a line consisting of \ r\n also matches.215 sockets) a line consisting of \\r\\n also matches. 216 216 """ 217 217 return line in _blanklines
Note:
See TracChangeset
for help on using the changeset viewer.