1. 23df3d2 Issue #7632: Fix a memory leak in _Py_dg_strtod. by Mark Dickinson · 15 years ago
  2. 18a818b 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. by Mark Dickinson · 15 years ago
  3. 811ff82 Issue #7632: Fix one more case of incorrect rounding for str -> float by Mark Dickinson · 15 years ago
  4. 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 15 years ago
  5. 0bc7747 Remove C++/C99-style comments. by Brett Cannon · 15 years ago
  6. 3ffa43d The silencing of DeprecationWarning was not taking -3 into consideration. Since by Brett Cannon · 15 years ago
  7. f8747c1 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.) by Mark Dickinson · 15 years ago
  8. 50b60c6 Issue 7632: fix a dtoa.c bug (bug 6) causing incorrect rounding. Tests to follow. by Mark Dickinson · 15 years ago
  9. 03774fa 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. by Mark Dickinson · 15 years ago
  10. d2a9940 More dtoa.c cleanup; remove the need for bc.dplen, bc.dp0 and bc.dp1. by Mark Dickinson · 15 years ago
  11. 02139d7 Fix buggy comparison: LHS of comparison was being treated as unsigned. by Mark Dickinson · 15 years ago
  12. 6e0d3d6 Simplify and annotate the bigcomp function, removing unused special cases. by Mark Dickinson · 15 years ago
  13. 5818e01 Clarify that sulp expects a nonnegative input, but that +0.0 is fine. by Mark Dickinson · 15 years ago
  14. b26d56a Add comments explaining the role of the bigcomp function in dtoa.c. by Mark Dickinson · 15 years ago
  15. 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 15 years ago
  16. 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 15 years ago
  17. 102d70e Update version information for AST changes in r77422. by Alexandre Vassalotti · 15 years ago
  18. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  19. 0ca7452 Change a variable type to avoid signed overflow; replace repeated '19999' constant by a define. by Mark Dickinson · 15 years ago
  20. 5a0b399 Remove unused BCinfo fields and an unused macro. by Mark Dickinson · 15 years ago
  21. 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 15 years ago
  22. 3ad57e2 Update the version # of Python-ast.c based on the backport of set literals from by Brett Cannon · 15 years ago
  23. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  24. 2bcd177 Fix typo in comment. by Mark Dickinson · 15 years ago
  25. 1b34d25 Issue #5080: turn the DeprecationWarning from float arguments passed by Mark Dickinson · 15 years ago
  26. 71380c3 update copyright year by Benjamin Peterson · 15 years ago
  27. 0f02d39 check if the attribute is set before deleting it with T_OBJECT_EX (fixes #7604) by Benjamin Peterson · 15 years ago
  28. 740cdc3 #7033: add new API function PyErr_NewExceptionWithDoc, for easily giving new exceptions a docstring. by Georg Brandl · 15 years ago
  29. 12748b0 Issue #7518: Move substitute definitions of C99 math functions from by Mark Dickinson · 15 years ago
  30. 5f429e0 account for PyObject_IsInstance's new ability to fail by Benjamin Peterson · 15 years ago
  31. 3dc2541 Issue #6985: number of range() items should be constrained to lie by Mark Dickinson · 15 years ago
  32. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 15 years ago
  33. ccc690d Issue #1678380: When distinguishing between -0.0 and 0.0 in by Mark Dickinson · 15 years ago
  34. bce7837 round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this. by Mark Dickinson · 15 years ago
  35. cef9782 turn goto into do while loop by Benjamin Peterson · 15 years ago
  36. 009b89d genexps have linenos by Benjamin Peterson · 15 years ago
  37. d16d0ab provide line number for lambdas by Benjamin Peterson · 15 years ago
  38. 99a5023 improve several corner cases related with argument names in parenthesis by Benjamin Peterson · 15 years ago
  39. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 15 years ago
  40. 90ed611 a better callable replacement by Benjamin Peterson · 15 years ago
  41. 51ae492 Set retval on PyOS_string_to_double failure. by Mark Dickinson · 15 years ago
  42. 504a151 Issue #6603: Fix --with-tsc build failures on x86-64 that resulted by Mark Dickinson · 15 years ago
  43. 09823a2 Deprecate PyOS_ascii_strtod and PyOS_ascii_atof, and document the replacement function PyOS_string_to_double. by Mark Dickinson · 15 years ago
  44. ea0e3b0 do a backport of r75928 by Benjamin Peterson · 15 years ago
  45. b218d28 Removed PyOS_ascii_atof from marshal.c, as mentioned in issue 7117. Also brings it more in line with py3k. by Eric Smith · 15 years ago
  46. abc9f70 Removed PyOS_ascii_atof from ast.c, as mentioned in issue 7117. by Eric Smith · 15 years ago
  47. c1bdf89 Finished removing _PyOS_double_to_string, as mentioned in issue 7117. by Eric Smith · 15 years ago
  48. 975d757 Issue #7117 (backport py3k float repr) continued: Backport pystrtod.c from py3k. by Mark Dickinson · 15 years ago
  49. 0e0e215 Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sum by Mark Dickinson · 15 years ago
  50. da8652d9 Issue #7117 (backport py3k float repr) continued: by Mark Dickinson · 15 years ago
  51. 52462c3 Remove temporary define from r75653 by Mark Dickinson · 15 years ago
  52. 1d6e2e1 Issue #7117 (backport py3k float repr) continued: by Mark Dickinson · 15 years ago
  53. fd42f30 Temporary define to avoid build failure by Mark Dickinson · 15 years ago
  54. bb28285 Issue #7117: Prepare for backport of py3k float repr. by Mark Dickinson · 15 years ago
  55. f4ffae2 #7035: improve docs of the various <method>_errors() functions, and give them docstrings. by Georg Brandl · 15 years ago
  56. efb60c0 Issue #1722344: threading._shutdown() is now called in Py_Finalize(), which by Antoine Pitrou · 15 years ago
  57. 1566927 Removed calls to PyFloat_AsReprString. by Eric Smith · 15 years ago
  58. 026ac7c Allow core Python build to succeed under WITHOUT_COMPLEX. The module build stage still fails. by Mark Dickinson · 15 years ago
  59. 7fdd1cb Issue #1754094: Improve the stack depth calculation in the compiler. by Neil Schemenauer · 15 years ago
  60. 7adbb5a #7050 fix a SystemError when using tuple unpacking and augmented assignment by Benjamin Peterson · 15 years ago
  61. 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 15 years ago
  62. c4dcb38 Fix issue #1590864, multiple threads and fork() can cause deadlocks, by by Thomas Wouters · 15 years ago
  63. 93ed820 revert unintended changes by Benjamin Peterson · 15 years ago
  64. 8246968 tabbify by Benjamin Peterson · 15 years ago
  65. d692a71 revert r74699 since it loses useful error information by Benjamin Peterson · 15 years ago
  66. 5515990 PyObject_GetIter can set an error for its self just fine by Benjamin Peterson · 15 years ago
  67. c0ba828 better col_offsets for "for" statements with tuple unpacking #6704 by Benjamin Peterson · 15 years ago
  68. 9279e7d - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with by Sean Reifscheider · 15 years ago
  69. 982b2fa Better name a variable: 'buf' seems to imply a mutable buffer. by Amaury Forgeot d'Arc · 15 years ago
  70. 4879c90 the Slice in x[::] has to have step as None to help the interpreter by Benjamin Peterson · 15 years ago
  71. e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 15 years ago
  72. 3310a10 Update issue 6070 patch to match the patch that was actually tested on Windows. by R. David Murray · 15 years ago
  73. 23a736a Issue 6070: when creating a compiled file, after copying the mode bits, on by R. David Murray · 15 years ago
  74. 753d162 when print() gets unicode arguments, sep and end should be unicode by default #4618 by Benjamin Peterson · 15 years ago
  75. 4a3cf19 small optimization: avoid popping the current block until we have to by Benjamin Peterson · 15 years ago
  76. e323e0e Fix error handling in PyCode_Optimize, by Alexander Schremmer at EuroPython sprint. by Georg Brandl · 15 years ago
  77. 7274cff Update docstrings for sys.getdlopenflags() and sys.setdlopenflags(). by Alexandre Vassalotti · 15 years ago
  78. 8f7b94e use stack macros by Benjamin Peterson · 15 years ago
  79. b8338ab add two generic macros for peeking and setting in the stack by Benjamin Peterson · 15 years ago
  80. 1a4ceb2 fix grammar by Benjamin Peterson · 15 years ago
  81. d9920c2 remove tmpname support since it's no longer used by Benjamin Peterson · 15 years ago
  82. f67caf8 don't need to add the name 'lambda' as assigned by Benjamin Peterson · 15 years ago
  83. 5ecf57a remove unused 'encoding' member from the compiler struct by Benjamin Peterson · 15 years ago
  84. 8fa3e93 update ast version by Benjamin Peterson · 15 years ago
  85. a72be3b when no module is given in a 'from' relative import, make ImportFrom.module NULL by Benjamin Peterson · 15 years ago
  86. 52c4bec give a better error message when deleting () by Benjamin Peterson · 15 years ago
  87. 5d1ff94 set Print.values to NULL if there are no values by Benjamin Peterson · 15 years ago
  88. d1f5a59 allow importing from a module named None if it has an 'as' clause by Benjamin Peterson · 15 years ago
  89. 565e1b6 prevent import statements from assigning to None by Benjamin Peterson · 15 years ago
  90. 4afbba3 keep the slice.step field as NULL if no step expression is given by Benjamin Peterson · 15 years ago
  91. a6e3474 Add const qualifier to PyErr_SetFromErrnoWithFilename and to by Alexandre Vassalotti · 15 years ago
  92. 4efb5d0 remove check for case handled in sub-function by Benjamin Peterson · 15 years ago
  93. b266481 revert r73361 by Benjamin Peterson · 15 years ago
  94. e5fa5fe remove duplicate check by Benjamin Peterson · 15 years ago
  95. a5a5728 remove error checks already done in set_context() by Benjamin Peterson · 15 years ago
  96. 8ea4ded remove useless assertion by Benjamin Peterson · 15 years ago
  97. 46dbe27 Issue #5330: C functions called with keyword arguments were not reported by by Antoine Pitrou · 15 years ago
  98. 7937d93 Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g by Jeffrey Yasskin · 15 years ago
  99. dd0388a further hint to where the open docs really are by Philip Jenvey · 15 years ago
  100. aafa18a teach the peepholer about SETUP_WITH by Benjamin Peterson · 15 years ago