diff options
author | Michael W. Hudson <mwh@python.net> | 2004-11-30 14:31:54 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2004-11-30 14:31:54 (GMT) |
commit | 02d74f68c63ef93cd30873f7ff8c083dd3ec60c0 (patch) | |
tree | f8a0d3a69bed38ff0015918a9d4a0553eef2ae4c /Doc/lib/libfcntl.tex | |
parent | a3bc546d2a6d1d36bae274ec9cf3dc013c1c333a (diff) | |
download | cpython-02d74f68c63ef93cd30873f7ff8c083dd3ec60c0.zip cpython-02d74f68c63ef93cd30873f7ff8c083dd3ec60c0.tar.gz cpython-02d74f68c63ef93cd30873f7ff8c083dd3ec60c0.tar.bz2 |
Hear the #error: change the default value of the mutable_arg argument
to ioctl() and remove the warning when it is not supplied.
Diffstat (limited to 'Doc/lib/libfcntl.tex')
-rw-r--r-- | Doc/lib/libfcntl.tex | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/lib/libfcntl.tex b/Doc/lib/libfcntl.tex index df258ee..4391d73 100644 --- a/Doc/lib/libfcntl.tex +++ b/Doc/lib/libfcntl.tex @@ -78,11 +78,9 @@ The module defines the following functions: long which is then passed to \function{ioctl()} and copied back into the supplied buffer. - If \var{mutate_flag} is not supplied, then in 2.3 it defaults to - false. This is planned to change over the next few Python versions: - in 2.4 failing to supply \var{mutate_flag} will get a warning but - the same behavior and in versions later than 2.5 it will default to - true. + If \var{mutate_flag} is not supplied, then from Python 2.5 it + defaults to true, which is a change from versions 2.3 and 2.4. + Supply the argument explicitly if version portability is a priority. An example: |