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 arigo
Recipients arigo
Date 2016-12-06.11:55:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481025334.98.0.47326643477.issue28884@psf.upfronthosting.co.za>
In-reply-to
Content
(B2) fcntl.ioctl(x, y, buf, mutate_flag): mutate_flag is there for the case
  of buf being a read-write buffer, which is then mutated in-place.
  But if we call with a read-only buffer, mutate_flag is ignored (instead
  of rejecting a True value)---ioctl(x, y, "foo", True) will not actually
  mutate the string "foo", but the True is completely ignored.  (I think
  this is a bug introduced during the Argument Clinic refactoring.)
History
Date User Action Args
2016-12-06 11:55:35arigosetrecipients: + arigo
2016-12-06 11:55:34arigosetmessageid: <1481025334.98.0.47326643477.issue28884@psf.upfronthosting.co.za>
2016-12-06 11:55:34arigolinkissue28884 messages
2016-12-06 11:55:34arigocreate