5073 Commits (4afd143d3e615ce2d65bcededafb2e2bcda0768f)

Author SHA1 Message Date
Victor Stinner 78cc2e8968 Issue #25003: os.urandom() doesn't use getentropy() on Solaris because 11 years ago
Victor Stinner bae2d6203f Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() 11 years ago
Victor Stinner b7a8af20ff Fix _PyTime_AsTimevalStruct_impl() on OpenBSD 11 years ago
Victor Stinner c29f399e7e Backout change 28d3bcb1bad6: "Try to fix _PyTime_AsTimevalStruct_impl() on 11 years ago
Victor Stinner c51d244fc9 Issue #25171: Fix compilation issue on OpenBSD in random.c 11 years ago
Victor Stinner 449b271799 Issue #18174: Explain why is_valid_fd() uses dup() instead of fstat() 11 years ago
Victor Stinner 2bfed53b88 Try to fix _PyTime_AsTimevalStruct_impl() on OpenBSD 11 years ago
Benjamin Peterson 58b53953f8 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) 11 years ago
Brett Cannon 1dae0c68dd Issue #25186: Remove duplicated function from importlib._bootstrap_external 11 years ago
Eric V. Smith 1e5fcc3dea Fixed error creation if the problem is an empty expression in an f-string: use ast_error instead of PyErr_SetString. 11 years ago
Eric V. Smith 1d44c41b0c Move f-string compilation of the expression earlier, before the conversion character and format_spec are checked. This allows for error messages that more closely match what a user would expect. 11 years ago
Eric V. Smith 5567f89c6f Issue #24779: Remove unused rawmode parameter to unicode_decode. 11 years ago
Eric V. Smith 235a6f0984 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. 11 years ago
Victor Stinner 3abf44e48f Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() 11 years ago
Victor Stinner ec26f83f2e Issue #25155: Fix _PyTime_Divide() rounding 11 years ago
Victor Stinner 9a8b177e60 Issue #25155: Add _PyTime_AsTimevalTime_t() function 11 years ago
Victor Stinner 1e2b6882fc Issue #25155: Add _PyTime_AsTimevalTime_t() function 11 years ago
Victor Stinner cd6e69439c Issue #25160: Fix import_init() comments and messages 11 years ago
Benjamin Peterson b685515039 compute stack effect of BUILD_MAP correctly (closes #25060) 11 years ago
Victor Stinner 51b9398444 pytime: oops, fix typos on Windows 11 years ago
Victor Stinner c60542b12b pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviour 11 years ago
Victor Stinner ff0ed3e71c New try to fix test_time.test_AsSecondsDouble() on x86 buildbots. 11 years ago
Victor Stinner 1efbebaac2 Try to fix test_time.test_AsSecondsDouble() on "x86 Gentoo Non-Debug with X 3.x" buildbot 11 years ago
Victor Stinner 9c72f9b30a Fix test_time on Windows 11 years ago
Victor Stinner 3e2c8d84c6 test_time: rewrite PyTime API rounding tests 11 years ago
Victor Stinner 9ae47dfbd9 pytime: add _PyTime_Round() helper to factorize code 11 years ago
Victor Stinner ce6aa749b4 Make _PyTime_RoundHalfEven() private again 11 years ago
Victor Stinner 7667f58151 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of 11 years ago
Serhiy Storchaka 56f6e76c68 Issue #15989: Fixed some scarcely probable integer overflows. 11 years ago
Larry Hastings 714e49371b Issue #24305: Prevent import subsystem stack frames from being counted 11 years ago
Victor Stinner adfefa527a Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in 11 years ago
Victor Stinner 6fb5bae252 Fix race condition in create_stdio() 11 years ago
Victor Stinner 5786aef382 Don't abuse volatile keyword in pytime.c 11 years ago
Victor Stinner 29ee6745af Enhance _PyTime_AsTimespec() 11 years ago
Victor Stinner 38b8ae0f5b Issue #24993: Handle import error in namereplace error handler 11 years ago
Victor Stinner 00723e0353 Fix ast_for_atom() 11 years ago
Victor Stinner 5ad5821d09 oops, rename pymonotonic_new() to pymonotonic() 11 years ago
Victor Stinner c3c616c3d1 Issue #24707: Remove assertion in monotonic clock 11 years ago
Victor Stinner 2ec558739e Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest 11 years ago
Victor Stinner 24b822e21e Issue #23517: Try to fix test_time on "x86 Ubuntu Shared 3.x" buildbot 11 years ago
Victor Stinner 67edcc905d Issue #23517: Fix _PyTime_ObjectToDenominator() 11 years ago
Victor Stinner 744742320f Issue #23517: Add "half up" rounding mode to the _PyTime API 11 years ago
Victor Stinner bbdda21a7a Move assertion inside _PyTime_ObjectToTimeval() 11 years ago
Victor Stinner 53e137c8dd Refactor pytime.c 11 years ago
Yury Selivanov b3d531348c Issue #24975: Fix AST compilation for PEP 448 syntax. 11 years ago
Larry Hastings 01b1ff6970 Rebuilt Clinic generated code. 11 years ago
Larry Hastings 1df0b35e3d Issue #24769: Interpreter now starts properly when dynamic loading 11 years ago
Eric V. Smith 163b5c668d Fix a trivial typo. 11 years ago
Raymond Hettinger 501b4a7398 Use PyTuple_GET_SIZE like the adjacent code does. 11 years ago
Raymond Hettinger f109414094 Inline PyIter_Next() matching the other itertools code. 11 years ago