This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Yuval.Weinbaum
Recipients Yuval.Weinbaum, docs@python
Date 2013-01-01.14:56:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357052189.92.0.352175087043.issue16834@psf.upfronthosting.co.za>
In-reply-to
Content
In fcntl module, the documentation states the following regarding the mutate_flag in ioctl method:

***
If it is false, the buffer’s mutability is ignored and behaviour is as for a read-only buffer, except that the 1024 byte limit mentioned above is avoided – so long as the buffer you pass is as least as long as what the operating system wants to put there, things should work.
***

However, looking at the code (fcntlmodule.c) it seems that the 1024 bytes limitation is avoided when the mutate_flag is set to True (the opposite of what is stated in the doc).
History
Date User Action Args
2013-01-01 14:56:30Yuval.Weinbaumsetrecipients: + Yuval.Weinbaum, docs@python
2013-01-01 14:56:29Yuval.Weinbaumsetmessageid: <1357052189.92.0.352175087043.issue16834@psf.upfronthosting.co.za>
2013-01-01 14:56:29Yuval.Weinbaumlinkissue16834 messages
2013-01-01 14:56:29Yuval.Weinbaumcreate