diff options
author | Michael W. Hudson <mwh@python.net> | 2003-03-03 12:29:42 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2003-03-03 12:29:42 (GMT) |
commit | f00899866888408106fea4147a9d2cdc2f1e8dbc (patch) | |
tree | 32aae5a6d01192bc79456886bd8d299ad84ecdeb /Misc | |
parent | 122152451e1bc7aaff69d28b8950afa7848c6de6 (diff) | |
download | cpython-f00899866888408106fea4147a9d2cdc2f1e8dbc.zip cpython-f00899866888408106fea4147a9d2cdc2f1e8dbc.tar.gz cpython-f00899866888408106fea4147a9d2cdc2f1e8dbc.tar.bz2 |
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!).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ Core and builtins Extension modules ----------------- +- 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(). Added chain() and cycle(). |