diff options
author | Georg Brandl <georg@python.org> | 2007-10-30 17:42:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-30 17:42:20 (GMT) |
commit | 316414e435988864a6d475dbfefbc0ebdf0fbe2d (patch) | |
tree | 3e4b577c85d26208fcc8880ad7b8b172e2cfce44 /Lib/io.py | |
parent | 2dced8b602df10531cab6cd87da5503c06f14888 (diff) | |
download | cpython-316414e435988864a6d475dbfefbc0ebdf0fbe2d.zip cpython-316414e435988864a6d475dbfefbc0ebdf0fbe2d.tar.gz cpython-316414e435988864a6d475dbfefbc0ebdf0fbe2d.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib/io.py')
-rw-r--r-- | Lib/io.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -87,7 +87,7 @@ def open(file, mode="r", buffering=None, encoding=None, newline=None, a filename is given. (*) If a file descriptor is given, it is closed when the returned - I/O object is closed, unless closefd=False is give. + I/O object is closed, unless closefd=False is given. Mode strings characters: 'r': open for reading (default) |