summaryrefslogtreecommitdiffstats
path: root/Lib/StringIO.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-02-28 15:12:25 (GMT)
committerGuido van Rossum <guido@python.org>2000-02-28 15:12:25 (GMT)
commit98d9fd3e68075ce6fe7642ed8793c1abee69edf6 (patch)
treee7edc9f6bc97f7543df5b741520cf0f607176b15 /Lib/StringIO.py
parentee28c3a5eae41a9b349ebbe7c4583d6a36a1984c (diff)
downloadcpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.zip
cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.gz
cpython-98d9fd3e68075ce6fe7642ed8793c1abee69edf6.tar.bz2
Simple changes by Gerrit Holl - move author acknowledgements out of
docstrings into comments.
Diffstat (limited to 'Lib/StringIO.py')
-rw-r--r--Lib/StringIO.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/StringIO.py b/Lib/StringIO.py
index 04ffec9..8efd7d8 100644
--- a/Lib/StringIO.py
+++ b/Lib/StringIO.py
@@ -19,6 +19,8 @@ f.getvalue() # return whole file's contents as a string
Notes:
- Using a real file is often faster (but less convenient).
+- There's also a much faster implementation in C, called cStringIO, but
+ it's not subclassable.
- fileno() is left unimplemented so that code which uses it triggers
an exception early.
- Seeking far beyond EOF and then writing will insert real null