Message265074
| 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:44 | xdegaye | set | recipients: + xdegaye, loewis, Alex.Willmer |
| 2016-05-07 16:02:44 | xdegaye | set | messageid: <1462636964.31.0.384006651227.issue26935@psf.upfronthosting.co.za> |
| 2016-05-07 16:02:44 | xdegaye | link | issue26935 messages |
| 2016-05-07 16:02:43 | xdegaye | create | |