[Python-checkins] python/dist/src/Misc NEWS,1.685,1.686

mwh@users.sourceforge.net mwh@users.sourceforge.net
Mon, 03 Mar 2003 04:29:44 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv423/Misc

Modified Files:
	NEWS 
Log Message:
Fix bug 

[ 555817 ] Flawed fcntl.ioctl implementation.

with my patch that allows for an array to be mutated when passed
as the buffer argument to ioctl() (details complicated by 
backwards compatibility considerations -- read the docs!).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.685
retrieving revision 1.686
diff -C2 -d -r1.685 -r1.686
*** NEWS	2 Mar 2003 00:19:49 -0000	1.685
--- NEWS	3 Mar 2003 12:29:41 -0000	1.686
***************
*** 25,28 ****
--- 25,31 ----
  -----------------
  
+ - Modified the fcntl.ioctl() function to allow modification of a passed
+   mutable buffer (for details see the reference documentation).
+ 
  - Made user requested changes to the itertools module.
    Subsumed the times() function into repeat().