[issue33528] os.getentropy support

2018-05-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: AFAIK os.urandom is implemented via getentropy() if it is the most preferable source of randomness. See Python/bootstrap_hash.c and PEP 524 for details. -- nosy: +rhettinger, serhiy.storchaka, vstinner ___ Python

[issue33528] os.getentropy support

2018-05-15 Thread STINNER Victor
STINNER Victor added the comment: "os.getentropy support" David Carlier: Would you mind to elaborate a little bit? This feature request is a little bit short. -- ___ Python tracker _

[issue33528] os.getentropy support

2018-05-15 Thread Eitan Adler
Change by Eitan Adler : -- nosy: +eitan.adler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue28167] remove platform.linux_distribution()

2018-05-15 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: Hi Petr, I'm fine with this. Maintaining the necessary logic Python is not really possible in the stdlib. It's better to have a PyPI module for this which can be updated much more easily. Thanks. -- ___ Python

[issue33531] test_asyncio: test_subprocess test_stdin_broken_pipe() failure on Travis CI

2018-05-15 Thread STINNER Victor
New submission from STINNER Victor : https://travis-ci.org/python/cpython/jobs/379560387 == FAIL: test_stdin_broken_pipe (test.test_asyncio.test_subprocess.SubprocessFastWatcherTests) ---

[issue33532] test_multiprocessing_forkserver: TestIgnoreEINTR.test_ignore() fails on Travis CI

2018-05-15 Thread STINNER Victor
New submission from STINNER Victor : https://travis-ci.org/python/cpython/jobs/379560387 == ERROR: test_ignore (test.test_multiprocessing_forkserver.TestIgnoreEINTR) --

[issue33531] test_asyncio: test_subprocess test_stdin_broken_pipe() failure on Travis CI

2018-05-15 Thread Eitan Adler
Change by Eitan Adler : -- nosy: +eitan.adler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue30928] Copy modified blurbs to idlelib/NEWS.txt for 3.7.0

2018-05-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 8fa36b6be47356f8e42a8bd0b3dba24a8fbd6c35 by Terry Jan Reedy in branch '3.6': bpo-30928: update idlelib/NEWS.txt for 3.6. (#6888) https://github.com/python/cpython/commit/8fa36b6be47356f8e42a8bd0b3dba24a8fbd6c35 -- _

[issue30104] clang 4.0 miscompiles dtoa.c, giving broken float parsing and printing

2018-05-15 Thread Eitan Adler
Change by Eitan Adler : -- nosy: +eitan.adler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue33533] Provide an async-generator version of as_completed

2018-05-15 Thread Hrvoje Nikšić
New submission from Hrvoje Nikšić : Judging by questions on the StackOverflow python-asyncio tag[1][2], it seems that users find it hard to understand how to use as_completed correctly. I have identified three issues: * It's somewhat sparingly documented. A StackOverflow user ([2]) didn't fin

[issue33533] Provide an async-generator version of as_completed

2018-05-15 Thread Hrvoje Nikšić
Hrvoje Nikšić added the comment: Of course, `yield from done` would actually have to be `for future in done: yield future`, since async generators don't support yield from. -- ___ Python tracker

<    1   2   3