diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-04-06 16:47:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-04-06 16:47:13 (GMT) |
commit | 9a89e96f9f0c60d4032d888a38b6890f4e634ae6 (patch) | |
tree | 0eea3aaa46a81a2accd7fe4d5b7c7f3f868031e9 /Lib | |
parent | 42f2ae0f69cf9dbf59b49685413a5750d11f4438 (diff) | |
download | cpython-9a89e96f9f0c60d4032d888a38b6890f4e634ae6.zip cpython-9a89e96f9f0c60d4032d888a38b6890f4e634ae6.tar.gz cpython-9a89e96f9f0c60d4032d888a38b6890f4e634ae6.tar.bz2 |
fix typo in doc string
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/io.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -228,8 +228,8 @@ class IOBase(metaclass=abc.ABCMeta): This does not define read(), readinto() and write(), nor readline() and friends, since their signatures vary per layer. - Not that calling any method (even inquiries) on a closed file is - undefined. Implementations may raise IOError in this case. + Note that calling any method (even inquiries) on a closed file is + undefined. Implementations may raise IOError in this case. """ ### Internal ### |