3095 Commits (6f25d75f25ae83285e3c3e95ca279e49ce5da691)

Author SHA1 Message Date
Benjamin Peterson 965458931f improve error message from passing inadequate number of keyword arguments #6474 17 years ago
Benjamin Peterson 88e7ebac4c co_varnames is certainly a tuple, so let's not waste time finding out 17 years ago
Benjamin Peterson d51b259b31 remove pointless condition 17 years ago
Benjamin Peterson 56472c2463 flatten condition 17 years ago
Victor Stinner ea1642910e Partial backport of r78826: leave import site error handler unchanged (print 17 years ago
Victor Stinner d156fa3033 Merged revisions 78638 via svnmerge from 17 years ago
Benjamin Peterson 0dee9c1b5c prevent lambda functions from having docstrings #8164 17 years ago
Mark Dickinson f1ff88f0e4 Fix incorrect error checks in structmember.c (backport of r78920 from py3k). 17 years ago
Victor Stinner 6664426d7c Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt 17 years ago
Benjamin Peterson 264a01091a Merged revisions 78746 via svnmerge from 17 years ago
Benjamin Peterson 9c4742e6ce more specific exception for wrong kind of raise #8082 17 years ago
Victor Stinner 71fb87e64c Issue #7544: Preallocate thread memory before creating the thread to avoid a 17 years ago
Barry Warsaw 1545d80e07 Revert r78621. This was not a critical fix and we're in rc mode. 17 years ago
Florent Xicluna 90193c01b9 Merged revisions 78620 via svnmerge from 17 years ago
Florent Xicluna 8af970ab58 Revert a nonexistent docstring typo, r42805. 17 years ago
Gregory P. Smith c21d0cb6cf Merged revisions 78527,78531 via svnmerge from 17 years ago
Gregory P. Smith 9e5d1327f8 Issue #7242: On Solaris 9 and earlier calling os.fork() from within a 17 years ago
Amaury Forgeot d'Arc adfc80bd81 #4852: Remove dead code in every thread implementation, unused for many years. 17 years ago
Benjamin Peterson ee46101e68 remove pointless error checking 17 years ago
Benjamin Peterson 004f3dcaa5 Merged revisions 68805 via svnmerge from 17 years ago
Benjamin Peterson 565d78586b normalize exceptions passed to the __exit__ method #7853 17 years ago
Victor Stinner d85f1c01af Merged revisions 77892 via svnmerge from 17 years ago
Victor Stinner b4b0a2935d Issue #7819: Check sys.call_tracing() arguments types. 17 years ago
Eric Smith ee931b7253 Issue #7766: Change sys.getwindowsversion() return value to a named tuple and add the additional members returned in an OSVERSIONINFOEX structure. The new members are service_pack_major, service_pack_minor, suite_mask, and product_type. 17 years ago
Mark Dickinson 8cd0a66a0f dtoa.c fix from upstream that fixes incorrectly rounded results for certain subnormals that are also halfway cases. 17 years ago
Mark Dickinson fc5290458d Issue #7743: Add checks for zero inputs to the lshift and mult functions; 17 years ago
Mark Dickinson adcda3400f Issue #7743: Fix a potential incorrect rounding bug in dtoa.c (2nd bug 17 years ago
Mark Dickinson 86db34207c Correct typo in comment. 17 years ago
Mark Dickinson ca6ea56718 Additional explanatory comments for _Py_dg_strtod. 17 years ago
Mark Dickinson 1942806013 Don't try to put a value into a NULL pointer. 17 years ago
Mark Dickinson 4141d65fb7 Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code 17 years ago
Mark Dickinson 9481c576cd Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the 17 years ago
Mark Dickinson 23df3d270d Issue #7632: Fix a memory leak in _Py_dg_strtod. 17 years ago
Mark Dickinson 18a818bc63 Fix multiple uses of variable 'L' in _Py_dg_strtod, where one use requires an unsigned long and the other a signed long. See also r77421. 17 years ago
Mark Dickinson 811ff822f8 Issue #7632: Fix one more case of incorrect rounding for str -> float 17 years ago
Mark Dickinson 476279f18b Issue #7632: Fix a serious wrong output bug for string -> float conversion. 17 years ago
Brett Cannon 0bc77474aa Remove C++/C99-style comments. 17 years ago
Brett Cannon 3ffa43db48 The silencing of DeprecationWarning was not taking -3 into consideration. Since 17 years ago
Mark Dickinson f8747c1f12 Issue 7632: fix incorrect rounding for long input strings with values very close to a power of 2. (See Bug 4 in the tracker discussion.) 17 years ago
Mark Dickinson 50b60c612e Issue 7632: fix a dtoa.c bug (bug 6) causing incorrect rounding. Tests to follow. 17 years ago
Mark Dickinson 03774fac62 Fix off-by-one error introduced in r77483. I have a test for this, but it currently fails due to a different dtoa.c bug; I'll add the test once that bug is fixed. 17 years ago
Mark Dickinson d2a9940acb More dtoa.c cleanup; remove the need for bc.dplen, bc.dp0 and bc.dp1. 17 years ago
Mark Dickinson 02139d74ba Fix buggy comparison: LHS of comparison was being treated as unsigned. 17 years ago
Mark Dickinson 6e0d3d67fb Simplify and annotate the bigcomp function, removing unused special cases. 17 years ago
Mark Dickinson 5818e01253 Clarify that sulp expects a nonnegative input, but that +0.0 is fine. 17 years ago
Mark Dickinson b26d56ac18 Add comments explaining the role of the bigcomp function in dtoa.c. 17 years ago
Mark Dickinson 5ff4f279e6 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. 17 years ago
Mark Dickinson 8efef5ce9f Issue #7632: Fix a problem with _Py_dg_strtod that could lead to 17 years ago
Alexandre Vassalotti 102d70e06c Update version information for AST changes in r77422. 17 years ago
Alexandre Vassalotti b646547bb4 Issue #2333: Backport set and dict comprehensions syntax. 17 years ago