summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2005-12-13 16:44:02 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2005-12-13 16:44:02 (GMT)
commite237d50390433a4d38944221a6c3280cc6940d9e (patch)
tree326e24476a76c251bbcbbd8c3acc18d5f2d07adf /Misc
parent50f8169fb6520488c6b4dfcb4603e845d5ae1ca1 (diff)
downloadcpython-e237d50390433a4d38944221a6c3280cc6940d9e.zip
cpython-e237d50390433a4d38944221a6c3280cc6940d9e.tar.gz
cpython-e237d50390433a4d38944221a6c3280cc6940d9e.tar.bz2
Add a workaround for file.ftell() to raise IOError for ttys.
ftell(3) on BSD doesn't set errno even for ttys and returns useless values.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d675706..c8e8981 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5 alpha 1?
Core and builtins
-----------------
+- Added a workaround for file.tell() to raise IOError when the file
+ is a tty on every platforms as documented in our library reference.
+
- Patch #1350409: Work around signal handling bug in Visual Studio 2005.
- Bug #1281408: Py_BuildValue now works correct even with unsigned longs