[Python-checkins] python/dist/src/Misc NEWS,1.603,1.604
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
2003年1月07日 12:33:47 -0800
Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv22724
Modified Files:
NEWS
Log Message:
Fix from Michael Stone for SF bug #660476 and #513033 (bogus thread
state swaps in readline).
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.603
retrieving revision 1.604
diff -C2 -d -r1.603 -r1.604
*** NEWS 6 Jan 2003 06:51:36 -0000 1.603
--- NEWS 7 Jan 2003 20:33:41 -0000 1.604
***************
*** 22,25 ****
--- 22,29 ----
-----------------
+ - Fixed broken threadstate swap in readline that could cause fatal
+ errors when a readline hook was being invoked while a background
+ thread was active. (SF bugs #660476 and #513033.)
+
- fcntl now exposes the strops.h I_* constants.