1. 8cd0a66 dtoa.c fix from upstream that fixes incorrectly rounded results for certain subnormals that are also halfway cases. by Mark Dickinson · 15 years ago
  2. fc52904 Issue #7743: Add checks for zero inputs to the lshift and mult functions; by Mark Dickinson · 15 years ago
  3. c64614e fixed the 64bits tests for get_platform() - mac osx by Tarek Ziadé · 15 years ago
  4. 0e4e732 Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds. by Ezio Melotti · 15 years ago
  5. 5633a80 taking sysconfig out of distutils by Tarek Ziadé · 15 years ago
  6. c3b0cd7 #7725: fix referencing issue. by Georg Brandl · 15 years ago
  7. 6878ee8 #7762: fix refcount annotation of PyUnicode_Tailmatch(). by Georg Brandl · 15 years ago
  8. adcda34 Issue #7743: Fix a potential incorrect rounding bug in dtoa.c (2nd bug by Mark Dickinson · 15 years ago
  9. f8a9402 This should fix the failure introduced in r77680. The error message is now different and it caused the test to fail. The failing test is not present in 2.5 so it is failing only on 2.6 and newer versions. by Ezio Melotti · 15 years ago
  10. 86db342 Correct typo in comment. by Mark Dickinson · 15 years ago
  11. 0d948ac - Expat: Fix DoS via XML document with malformed UTF-8 sequences by Matthias Klose · 15 years ago
  12. 3b0f9b0 - Mention CVE-2009-3720 for change in r74429. by Matthias Klose · 15 years ago
  13. 77a64e7 #7746: rephrase a sentence by Ezio Melotti · 15 years ago
  14. a3112d1 Use // for floor division. by Mark Dickinson · 15 years ago
  15. 5a63348 Add two more test_strtod test values. by Mark Dickinson · 15 years ago
  16. 294d6ac Additional testcases for strtod. by Mark Dickinson · 15 years ago
  17. ca6ea56 Additional explanatory comments for _Py_dg_strtod. by Mark Dickinson · 15 years ago
  18. 1942806 Don't try to put a value into a NULL pointer. by Mark Dickinson · 15 years ago
  19. 4141d65 Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code by Mark Dickinson · 15 years ago
  20. 8926108 Revert debugprint code in r77607. by Gregory P. Smith · 15 years ago
  21. 6b35730 Do not compile stubs for the sha2 series hashes in the openssl hashlib by Gregory P. Smith · 15 years ago
  22. 8f6f426 Add a pydebug mode only debug print to help debug the errors in by Gregory P. Smith · 15 years ago
  23. 9179dab data descriptors do not override the class dictionary if __get__ is not defined by Benjamin Peterson · 15 years ago
  24. c07336c Add a NEWS entry for r77599 and r77600. by Antoine Pitrou · 15 years ago
  25. 9a38682 Add ccbench to the Tools directory by Antoine Pitrou · 15 years ago
  26. c9d6238 Add iobench to the Tools directory (see December python-dev discussion) by Antoine Pitrou · 15 years ago
  27. b01f5e6 #7730: remove spaces after functions names by Ezio Melotti · 15 years ago
  28. 42eaded Fix internal reference. by Georg Brandl · 15 years ago
  29. 9481c57 Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the by Mark Dickinson · 15 years ago
  30. 92397ce Explicitly use /usr/bin/arch on OSX, fixes issue 7715 by Ronald Oussoren · 15 years ago
  31. 3c0a126 This patch ensures that the configure-script mentions checking for --enable-universalsdk by Ronald Oussoren · 15 years ago
  32. a55af9a - Issue #7658: Ensure that the new pythonw executable works on OSX 10.4 by Ronald Oussoren · 15 years ago
  33. 60ba2c8 Use PyAPI_DATA. by Antoine Pitrou · 15 years ago
  34. 23df3d2 Issue #7632: Fix a memory leak in _Py_dg_strtod. by Mark Dickinson · 15 years ago
  35. 724c5b2 Add text to Mac/README to warn about non-universal libraries when by Ronald Oussoren · 15 years ago
  36. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 15 years ago
  37. aee9003 Add note about usage of STRINGLIB_EMPTY. by Georg Brandl · 15 years ago
  38. ab6ee7a Increase number of strtod tests slightly, to make it more likely that a memory leak is detected. by Mark Dickinson · 15 years ago
  39. 6cbb7f9 #7699: improve datetime docs: straightforward linking to strftime/strptime section, mark classmethods as such. by Georg Brandl · 15 years ago
  40. d87f22c Add better error reporting for MemoryErrors caused by str->float conversions. by Mark Dickinson · 15 years ago
  41. 5afe42b remove wrong markup by Ezio Melotti · 15 years ago
  42. 3373a3a typo: use one instead instead of two by Ezio Melotti · 15 years ago
  43. 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
  44. 811ff82 Issue #7632: Fix one more case of incorrect rounding for str -> float by Mark Dickinson · 15 years ago
  45. db983a7 Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk by Antoine Pitrou · 15 years ago
  46. c755dba Fix issue number in comment. by R. David Murray · 15 years ago
  47. 476279f Issue #7632: Fix a serious wrong output bug for string -> float conversion. by Mark Dickinson · 15 years ago
  48. ed44dfa Issue #1670765: Prevent email.generator.Generator from re-wrapping by R. David Murray · 15 years ago
  49. 57cd8eb issue5063: Fixes for building RPM on CentOS plus misc .spec file enhancements. by Sean Reifscheider · 15 years ago
  50. 334ffe8 Fixed issue-number mistake in NEWS update. by Vinay Sajip · 15 years ago
  51. 667dc19 try to fix for windows by Benjamin Peterson · 15 years ago
  52. 0bc7747 Remove C++/C99-style comments. by Brett Cannon · 15 years ago
  53. c391ad0 Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a by Antoine Pitrou · 15 years ago
  54. 3ffa43d The silencing of DeprecationWarning was not taking -3 into consideration. Since by Brett Cannon · 15 years ago
  55. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 15 years ago
  56. fd3a60d Issue #7703: Add support for the new buffer API to functions of the by Antoine Pitrou · 15 years ago
  57. 647ed91 Issue #7632: add tests for bugs fixed so far. by Mark Dickinson · 15 years ago
  58. 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
  59. 50b60c6 Issue 7632: fix a dtoa.c bug (bug 6) causing incorrect rounding. Tests to follow. by Mark Dickinson · 15 years ago
  60. 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
  61. d234208 Fixed typo by Ezio Melotti · 15 years ago
  62. 7a1b435 use more robust quoting by Benjamin Peterson · 15 years ago
  63. 852a27d Update PyEval_EvalFrame to PyEval_EvalFrameEx. This looks to have been done by Skip Montanaro · 15 years ago
  64. d2a9940 More dtoa.c cleanup; remove the need for bc.dplen, bc.dp0 and bc.dp1. by Mark Dickinson · 15 years ago
  65. 02139d7 Fix buggy comparison: LHS of comparison was being treated as unsigned. by Mark Dickinson · 15 years ago
  66. 6e0d3d6 Simplify and annotate the bigcomp function, removing unused special cases. by Mark Dickinson · 15 years ago
  67. 5818e01 Clarify that sulp expects a nonnegative input, but that +0.0 is fine. by Mark Dickinson · 15 years ago
  68. b26d56a Add comments explaining the role of the bigcomp function in dtoa.c. by Mark Dickinson · 15 years ago
  69. 5f76d13 Issue #7625: Add more tests that bytearray methods return new objects, by Antoine Pitrou · 15 years ago
  70. f58021f Add ACKS entry for r77472. by Antoine Pitrou · 15 years ago
  71. 5a9112c Issue #2846: Add support for gzip.GzipFile reading zero-padded files. by Antoine Pitrou · 15 years ago
  72. 1004292 Sanitize bloom filter macros by Antoine Pitrou · 15 years ago
  73. a913a20 Test commit to try to diagnose failures of the IA-64 buildbot by Antoine Pitrou · 15 years ago
  74. 1379b84 Use `with` by Antoine Pitrou · 15 years ago
  75. 8c510e7 Issue #7661: Allow ctypes to be built from a non-ASCII directory path. by Antoine Pitrou · 15 years ago
  76. 5c767c2 Fix Windows build (re r77461) by Antoine Pitrou · 15 years ago
  77. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 15 years ago
  78. d0ff51c #7685: typo by Ezio Melotti · 15 years ago
  79. 5ff4f27 Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded results. by Mark Dickinson · 15 years ago
  80. 8efef5c Issue #7632: Fix a problem with _Py_dg_strtod that could lead to by Mark Dickinson · 15 years ago
  81. efa45f3 Issue #7654: enable additional bytes/bytearray tests. Patch by Florent Xicluna. by Antoine Pitrou · 15 years ago
  82. b227f47 Added documentation for dictionary views fixer. by Alexandre Vassalotti · 15 years ago
  83. b5689de #5827: make sure that normpath preserves unicode by Ezio Melotti · 15 years ago
  84. 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 15 years ago
  85. ae7731a module cleanup by Tarek Ziadé · 15 years ago
  86. 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 15 years ago
  87. 7a8df80 Add missing NEWS entry for r77422. by Alexandre Vassalotti · 15 years ago
  88. dc0f487 Fixed #5372: .o files are now always rebuilt because file age test don't work in some case by Tarek Ziadé · 15 years ago
  89. 102d70e Update version information for AST changes in r77422. by Alexandre Vassalotti · 15 years ago
  90. b646547 Issue #2333: Backport set and dict comprehensions syntax. by Alexandre Vassalotti · 15 years ago
  91. 0ca7452 Change a variable type to avoid signed overflow; replace repeated '19999' constant by a define. by Mark Dickinson · 15 years ago
  92. e822ab0 fix test_popen when the path to python has spaces #7671 by Benjamin Peterson · 15 years ago
  93. 0e207df Issue #7119: document that a program-generated Message object by R. David Murray · 15 years ago
  94. 2e3da14 Fixed issue7648 - test_urllib2 fails on Windows if not run from C: by Senthil Kumaran · 15 years ago
  95. 5a0b399 Remove unused BCinfo fields and an unused macro. by Mark Dickinson · 15 years ago
  96. 9d87323 Update root certificate to CAcert. by Martin v. Löwis · 15 years ago
  97. 6fdd3dc DeprecationWarning is now silent by default. by Brett Cannon · 15 years ago
  98. 3ad57e2 Update the version # of Python-ast.c based on the backport of set literals from by Brett Cannon · 15 years ago
  99. ee936a2 Issue #2335: Backport set literals syntax from Python 3.x. by Alexandre Vassalotti · 15 years ago
  100. e365613 Issue #7532: Add additional slicing test cases for new- and old-style by Mark Dickinson · 15 years ago