[Python-checkins] r64635 - python/trunk/Doc/library/stdtypes.rst
georg.brandl
python-checkins at python.org
Tue Jul 1 22:45:09 CEST 2008
Author: georg.brandl
Date: Tue Jul 1 22:45:09 2008
New Revision: 64635
Log:
#1523853: add note about fread().
Modified:
python/trunk/Doc/library/stdtypes.rst
Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst (original)
+++ python/trunk/Doc/library/stdtypes.rst Tue Jul 1 22:45:09 2008
@@ -2058,6 +2058,10 @@
that when in non-blocking mode, less data than what was requested may be
returned, even if no *size* parameter was given.
+ .. note::
+ As this function depends of the underlying C function :cfunc:`fread`,
+ it resembles its behaviour in details like caching EOF and others.
+
.. method:: file.readline([size])
More information about the Python-checkins
mailing list