- 06 Jan, 2017 14 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang.
-
Victor Stinner authored
-
Victor Stinner authored
Issue #29157.
-
Victor Stinner authored
The glibc 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)
-
Victor Stinner authored
pyurandom() is now responsible to call getentropy() or getrandom(). Enhance also dev_urandom() and pyurandom() documentation.
-
Victor Stinner authored
Prepare the fallback to support getentropy() failure and falls back on reading from /dev/urandom.
-
Victor Stinner authored
-
Victor Stinner authored
Issue #29174, #26741: subprocess.Popen.__del__() now keeps a strong reference to warnings.warn() function.
-
Xavier de Gaye authored
-
Xavier de Gaye authored
-
Xavier de Gaye authored
-
INADA Naoki authored
-
INADA Naoki authored
-
- 05 Jan, 2017 4 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
Fix backward compatibility issue, HAVE_LONG_LONG was defined but empty, whereas it is defined as 1 in Python 3.5.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
Fix error in format string.
-
- 04 Jan, 2017 7 commits
-
-
Xavier de Gaye authored
-
Xavier de Gaye authored
-
Serhiy Storchaka authored
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-
Serhiy Storchaka authored
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-
Serhiy Storchaka authored
test_powlong is the same as test_powint. Patch by Lukas Schwaighofer.
-
Victor Stinner authored
-
Victor Stinner authored
The default value of fold is zero, not True. Fix the docstring of the Python implementation.
-
- 03 Jan, 2017 15 commits
-
-
Victor Stinner authored
-
Victor Stinner authored
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 authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Larry Hastings authored
-
Victor Stinner authored
Issue #28839: Optimize _PyFunction_FastCallDict() when kwargs is an empty dictionary, avoid the creation of an useless empty tuple.
-
Victor Stinner authored
function_call() now simply calls _PyFunction_FastCallDict(). _PyFunction_FastCallDict() is more efficient: it contains fast paths for the common case (optimized code object and no keyword argument).
-
Berker Peksag authored
-