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 spurin
Recipients David.Edelsohn, neologix, pitrou, python-dev, spurin
Date 2014-09-25.09:02:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411635746.76.0.680205288566.issue17835@psf.upfronthosting.co.za>
In-reply-to
Content
fcntl doesnt seem to like the parameter you mentioned -

# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.5 (Santiago)
# /local/0/opt/python-3.4.1/bin/python
Python 3.4.1 (default, Sep 24 2014, 12:23:21)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import fcntl, os
>>> r, w = os.pipe()
>>> fcntl.fcntl(w, 1032)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 22] Invalid argument
>>>
History
Date User Action Args
2014-09-25 09:02:26spurinsetrecipients: + spurin, pitrou, neologix, python-dev, David.Edelsohn
2014-09-25 09:02:26spurinsetmessageid: <1411635746.76.0.680205288566.issue17835@psf.upfronthosting.co.za>
2014-09-25 09:02:26spurinlinkissue17835 messages
2014-09-25 09:02:26spurincreate