- 31 Jul, 2015 6 commits
-
-
Robert Collins authored
Patch from Dmitry Shachnev.
-
Robert Collins authored
Patch from Dmitry Shachnev.
-
Victor Stinner authored
-
Victor Stinner authored
Issue #24763: Fix resource warnings when asyncio.BaseSubprocessTransport constructor fails, if subprocess.Popen raises an exception for example. Patch written by Martin Richard, test written by me.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 30 Jul, 2015 9 commits
-
-
Robert Collins authored
Patch from Craig Holmquist.
-
Robert Collins authored
Patch from Craig Holmquist.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Steve Dower authored
This ensures that wheels will work when moved to machines that have the same subset of the MSVC libraries as a regular CPython install. Specifically, vcruntime##0.dll may not be installed, and should not be a dependency.
-
Berker Peksag authored
It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode(). Patch by Nick Weinhold.
-
Berker Peksag authored
It should StreamWriter for Codecs.encode() and StreamReader for Codec.decode(). Patch by Nick Weinhold.
-
Berker Peksag authored
Patch by Martin Panter.
-
Victor Stinner authored
See the latest version of getrandom() manual page: http://man7.org/linux/man-pages/man2/getrandom.2.html#NOTES The behavior when a call to getrandom() that is blocked while reading from /dev/urandom is interrupted by a signal handler depends on the initialization state of the entropy buffer and on the request size, buflen. If the entropy is not yet initialized, then the call will fail with the EINTR error. If the entropy pool has been initialized and the request size is large (buflen > 256), the call either succeeds, returning a partially filled buffer, or fails with the error EINTR. If the entropy pool has been initialized and the request size is small (buflen <= 256), then getrandom() will not fail with EINTR. Instead, it will return all of the bytes that have been requested. Note: py_getrandom() calls getrandom() with flags=0.
-
- 29 Jul, 2015 15 commits
-
-
Berker Peksag authored
Patch by Keith Gray.
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-
Robert Collins authored
-
Robert Collins authored
-
Jason R. Coombs authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
written by Matthieu Gautier.
-
Ned Deily authored
-
Ned Deily authored
-
Robert Collins authored
Patch from Martin Panter.
-
Robert Collins authored
Patch from Martin Panter.
-
Victor Stinner authored
-
- 28 Jul, 2015 8 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Alessandro Cucci authored
-
Steve Dower authored
-
Steve Dower authored
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
- 27 Jul, 2015 2 commits
-
-
Steve Dower authored
-
Victor Stinner authored
accept() returns INVALID_SOCKET on error, it's not necessary a negative number.
-