- 06 Ock, 2017 6 kayıt (commit)
-
-
Victor Stinner yazdı
* dev_urandom() now calls py_getentropy(). Prepare the fallback to support getentropy() failure and falls back on reading from /dev/urandom. * Simplify dev_urandom(). pyurandom() is now responsible to call getentropy() or getrandom(). Enhance also dev_urandom() and pyurandom() documentation. * getrandom() is now preferred over getentropy(). The glibc 2.24 now implements getentropy() on Linux using the getrandom() syscall. But getentropy() doesn't support non-blocking mode. Since getrandom() is tried first, it's not more needed to explicitly exclude getentropy() on Solaris. Replace: "if defined(HAVE_GETENTROPY) && !defined(sun)" with "if defined(HAVE_GETENTROPY)" * Enhance py_getrandom() documentation. py_getentropy() now supports ENOSYS, EPERM & EINTR
-
Victor Stinner yazdı
Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang.
-
Victor Stinner yazdı
Issue #29174, #26741: subprocess.Popen.__del__() now keeps a strong reference to warnings.warn() function.
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
-
INADA Naoki yazdı
-
- 05 Ock, 2017 2 kayıt (commit)
-
-
Victor Stinner yazdı
Fix backward compatibility issue, HAVE_LONG_LONG was defined but empty, whereas it is defined as 1 in Python 3.5.
-
Terry Jan Reedy yazdı
Fix error in format string.
-
- 04 Ock, 2017 4 kayıt (commit)
-
-
Xavier de Gaye yazdı
-
Serhiy Storchaka yazdı
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-
Serhiy Storchaka yazdı
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-
Victor Stinner yazdı
The default value of fold is zero, not True. Fix the docstring of the Python implementation.
-
- 03 Ock, 2017 13 kayıt (commit)
-
-
Victor Stinner yazdı
Fix time_hash() function: replace DATE_xxx() macros with TIME_xxx() macros. Before, the hash function used a wrong value for microseconds if fold is set (equal to 1).
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Noticed by Serhiy Storchaka.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
Patch by Jim Fasarakis-Hilliard.
-
- 02 Ock, 2017 15 kayıt (commit)
-
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Larry Hastings yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-