diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:39:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-19 07:39:35 (GMT) |
commit | 1e87da16eac24f6e0fb6908906ab6400ce583fa0 (patch) | |
tree | d992030c489c74b4f385314d3fba2d1dbb675cf6 /Lib/rfc822.py | |
parent | 7a15390f83c57283b44163c33bb4a80fd453526b (diff) | |
download | cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.zip cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.tar.gz cpython-1e87da16eac24f6e0fb6908906ab6400ce583fa0.tar.bz2 |
Remove duplication.
Diffstat (limited to 'Lib/rfc822.py')
-rw-r--r-- | Lib/rfc822.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/rfc822.py b/Lib/rfc822.py index 64cd702..3b29a6a 100644 --- a/Lib/rfc822.py +++ b/Lib/rfc822.py @@ -34,7 +34,7 @@ The optional `seekable' argument is provided as a workaround for certain stdio libraries in which tell() discards buffered data before discovering that the lseek() system call doesn't work. For maximum portability, you should set the seekable argument to zero to prevent that initial \code{tell} when passing in -an unseekable object such as a a file object created from a socket object. If +an unseekable object such as a file object created from a socket object. If it is 1 on entry -- which it is by default -- the tell() method of the open file object is called once; if this raises an exception, seekable is reset to 0. For other nonzero values of seekable, this test is not made. |