- 02 Aug, 2015 13 commits
-
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
Patch by Jeffrey Armstrong.
-
Yury Selivanov authored
-
Yury Selivanov authored
-
Guido van Rossum authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Zachary Ware authored
-
Zachary Ware authored
-
Zachary Ware authored
-
Zachary Ware authored
Patch by Matt Frank.
-
- 01 Aug, 2015 7 commits
-
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
editor font. This should not affect current customized font selections. Patch by Mark Roseman.
-
Yury Selivanov authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Do not print false prompts. Original patch by Adnan Umer.
-
- 31 Jul, 2015 8 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
-
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 3 commits
-
-
Berker Peksag authored
Patch by Keith Gray.
-
Jason R. Coombs authored
-
Jason R. Coombs authored
-