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 xdegaye
Recipients Alex.Willmer, loewis, xdegaye
Date 2016-05-07.16:02:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462636964.31.0.384006651227.issue26935@psf.upfronthosting.co.za>
In-reply-to
Content
On android dup2() returns with an error when both fds are the same:

root@generic_x86:/data/local/tmp # python
Python 3.6.0a0 (default:811ccdee6f87+, May  7 2016, 12:44:06) 
[GCC 4.9 20140827 (prerelease)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> os.dup2(1, 1)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 22] Invalid argument


The attached patch fixes this in test_urandom_fd_reopened.
History
Date User Action Args
2016-05-07 16:02:44xdegayesetrecipients: + xdegaye, loewis, Alex.Willmer
2016-05-07 16:02:44xdegayesetmessageid: <1462636964.31.0.384006651227.issue26935@psf.upfronthosting.co.za>
2016-05-07 16:02:44xdegayelinkissue26935 messages
2016-05-07 16:02:43xdegayecreate