1. 3b6be74 Improve compatibility with Python3.0 testsuite by Jesus Cea · 16 years ago
  2. f22c26e #3703 unhelpful _fileio.FileIO error message when trying to open a directory by Benjamin Peterson · 16 years ago
  3. 4907d27 Update bsddb code to version 4.7.3pre2. This code should by Jesus Cea · 16 years ago
  4. 901e471 #3662: Fix segfault introduced when fixing memory leaks. by Neal Norwitz · 16 years ago
  5. 18aa388 Fix: by Neal Norwitz · 16 years ago
  6. 37346b2 #3643 add a few more checks to _testcapi to prevent segfaults by Benjamin Peterson · 16 years ago
  7. 94a7305 d is the correct format string by Christian Heimes · 16 years ago
  8. 1cc6963 Fixed two format strings in the _collections module. For example by Christian Heimes · 16 years ago
  9. a27a62e Silenced a compiler warning in the sqlite module by Christian Heimes · 16 years ago
  10. 93ebfb1 Issue 1179: [CVE-2007-4965] Integer overflow in imageop module. by Guido van Rossum · 16 years ago
  11. d9ccf8c COM method code is windows specific by Thomas Heller · 16 years ago
  12. 0ad5ae0 Fix a regression introduced by rev. 63792: ctypes function pointers by Thomas Heller · 16 years ago
  13. 6626099 Fix strange character in the docstring. by Thomas Heller · 16 years ago
  14. 7dd8547 get the symtable module back in working order by Benjamin Peterson · 16 years ago
  15. 41a81eb Backport r65661, r65760: Issue #3575: Incremental decoder's decode by Hirokazu Yamamoto · 16 years ago
  16. a0fdd72 Issue #2222: Fixed reference leak when occured os.rename() by Hirokazu Yamamoto · 16 years ago
  17. 8401eec Properly INCREF reference in Py_buffer. by Martin v. Löwis · 16 years ago
  18. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  19. 83e8184 Copy reduce() to _functools so to have functools.reduce() not raise a warning by Brett Cannon · 16 years ago
  20. 016b366 #3205: bz2 iterator fails silently on MemoryError by Antoine Pitrou · 16 years ago
  21. d693901 Patch by Ian Charnas from issue 3517. by Guido van Rossum · 16 years ago
  22. 8b762f0 Tracker issue 3487: sre "bytecode" verifier. by Guido van Rossum · 16 years ago
  23. 8df0e4f fix compile error on Windows by Benjamin Peterson · 16 years ago
  24. 1299e36 Submit fix for issue3393: Memory corruption in multiprocessing module by Jesse Noller · 16 years ago
  25. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 16 years ago
  26. ff3fdce Replace math.sum with math.fsum in a couple of comments by Mark Dickinson · 16 years ago
  27. fef6b13 Rename math.sum to math.fsum by Mark Dickinson · 16 years ago
  28. abe0aee Fix special-value handling for math.sum. by Mark Dickinson · 16 years ago
  29. ba55936 Make ctypes compatible with Python 2.3, 2.4, and 2.5 again. by Thomas Heller · 16 years ago
  30. 527eee2 Finish conversion from int to Py_ssize_t. by Raymond Hettinger · 16 years ago
  31. 723ba30 Parse to the correct datatype. by Raymond Hettinger · 16 years ago
  32. 33fcf9d Finish-up the partial conversion from int to Py_ssize_t for deque indices and length. by Raymond Hettinger · 16 years ago
  33. f9efabb 3k-warn about parser's "ast" aliases. by Georg Brandl · 16 years ago
  34. c5a11fa bsddb module updated to version 4.7.2devel9. by Jesus Cea · 16 years ago
  35. 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 16 years ago
  36. 74bd40d On Windows, silence a Purify warning and initialize the memory passed to CryptGenRandom. by Amaury Forgeot d'Arc · 16 years ago
  37. d648f64 #3322: bounds checking for _json.scanstring by Bob Ippolito · 16 years ago
  38. 278fc50 #3303: fix crash with invalid Py_DECREF in strcoll(). by Georg Brandl · 16 years ago
  39. 6b41a8e #3302: fix segfaults when passing None for arguments that can't by Georg Brandl · 16 years ago
  40. a24869a #3312: fix two sqlite3 crashes. by Georg Brandl · 16 years ago
  41. b9b68ae #3305: self->stream can be NULL. by Georg Brandl · 16 years ago
  42. 86cbf81 #1608818: errno can get set by every call to readdir(). by Georg Brandl · 16 years ago
  43. 880f529 Issue #3313: Contrary to the man page, a failed dlopen() call does not by Thomas Heller · 16 years ago
  44. c0b2a80 Issue #3258: Fix an assertion error (in debug build) and a crash (in by Thomas Heller · 16 years ago
  45. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  46. fb7a50f Fix posix.fork1() / os.fork1() to only call PyOS_AfterFork() in the child by Gregory P. Smith · 16 years ago
  47. bd70476 Issue #3153: sqlite leaks on error. by Alexandre Vassalotti · 16 years ago
  48. 4762902 Added garbage collector overhead and optional default return value to by Robert Schuppenies · 16 years ago
  49. 3cd1e42 Issue 3301: Bisect functions behaved badly when lo was negative. by Raymond Hettinger · 16 years ago
  50. 1a66441 Issue 3306. Better control for a lenght in findmax() function. by Facundo Batista · 16 years ago
  51. 0422292 Add commented out #_sha256 and #_sha512 lines per issue 3183. by Gregory P. Smith · 16 years ago
  52. 3b1e6b2 - Issue #3309: Fix bz2.BZFile itererator to release its internal lock by Gregory P. Smith · 16 years ago
  53. eb77fe4 fix issue3304 - remove an incorrect PyMem_Free in fileio_init by Gregory P. Smith · 16 years ago
  54. 2fe7706 - Issue #2862: Make int and float freelist management consistent with other by Gregory P. Smith · 16 years ago
  55. 083902a Issue 3289. Removed two lines that ended doing nothing. by Facundo Batista · 16 years ago
  56. ecf8d8c Minor rewrite of cmath_log to work around a Sun compiler bug. See issue #3168. by Mark Dickinson · 16 years ago
  57. 968117e Try a blind fix to nismodule which fails on the solaris10 3.0 buildbot: by Amaury Forgeot d'Arc · 16 years ago
  58. 1f40c8a #Issue3088 in-progress: Race condition with instances of classes derived from threading.local: by Amaury Forgeot d'Arc · 16 years ago
  59. 763d309 Fix #2702, with a correct accounting of recursion. by Facundo Batista · 16 years ago
  60. 934b16d various SSL fixes; issues 1251, 3162, 3212 by Bill Janssen · 16 years ago
  61. 68dc052 Reverting the patch from #3165, as it broke other by Facundo Batista · 16 years ago
  62. b436a24 Fix compilation on Windows. by Thomas Heller · 16 years ago
  63. 9da18b3 Fixing the problem stated in issue 2702 with the patch submitted by Facundo Batista · 16 years ago
  64. ac0c381 Expand docstrings of sqlite3 functions. by Georg Brandl · 16 years ago
  65. 1461886 Issue 3164. Small fix to don't repeat a comparation without necessity. by Facundo Batista · 16 years ago
  66. 5596b0c Issue #2722. Now the char buffer to support the path string has by Facundo Batista · 16 years ago
  67. 2fcd8c9 Fix another typo in math_sum comment by Mark Dickinson · 16 years ago
  68. 5f198be Fix comment typos by Andrew M. Kuchling · 16 years ago
  69. 3d8f8c1 Only include update_lines_cols() function when it's actually going to be used by Andrew M. Kuchling · 16 years ago
  70. 2281da4 Fix double decref. by Raymond Hettinger · 16 years ago
  71. fb1c4b9 Issue 3118: make test_math pass on Ubuntu/ia64. exp(-745.0) was raising by Mark Dickinson · 16 years ago
  72. d25cdc3 on windows, r64214 broke compilation with some recent SDKs, by Amaury Forgeot d'Arc · 16 years ago
  73. dfd7949 convert multiprocessing to unix line endings by Benjamin Peterson · 16 years ago
  74. 111c180 Make more symbols static. by Martin v. Löwis · 16 years ago
  75. e1f6646 Typo. by Georg Brandl · 16 years ago
  76. 6d53e7e #3095: don't leak values from Py_BuildValue. by Georg Brandl · 16 years ago
  77. 705cd06 Fix some memory dealloc problems when exceptions occur. by Neal Norwitz · 16 years ago
  78. e9ee44c Check for memory alloc failure by Neal Norwitz · 16 years ago
  79. a4dd2e2 Restore support for Microsoft VC6 compiler. by Amaury Forgeot d'Arc · 16 years ago
  80. 114f7e5 #1683 prevent forking from interfering in threading storage by Benjamin Peterson · 16 years ago
  81. 89f4887 Add future_builtins.ascii(). by Georg Brandl · 16 years ago
  82. 6fbfb48 Optimize previous checkin for heapq. by Raymond Hettinger · 16 years ago
  83. f0bc3cb Issue 3051: Let heapq work with either __lt__ or __le__. by Raymond Hettinger · 16 years ago
  84. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 16 years ago
  85. 190d56e add the multiprocessing package to fulfill PEP 371 by Benjamin Peterson · 16 years ago
  86. 99a3dce More reverting of r63675 per the mailing list discussions. This restores by Gregory P. Smith · 16 years ago
  87. dcea9a9 Add an optional 'offset' parameter to byref, defaultingto zero. by Thomas Heller · 16 years ago
  88. 8550d69 #2536: fix itertools.permutations and itertools.combinations docstrings. by Georg Brandl · 16 years ago
  89. d623414 Unhappy buildbots. Revert 64052. Long doubles have unexpected effects on some builds. by Raymond Hettinger · 16 years ago
  90. 7b1ed66 Address double-rounding scenarios by setting all variables to long doubles. by Raymond Hettinger · 16 years ago
  91. ecbdd2e Issue #2138: Add math.factorial(). by Raymond Hettinger · 16 years ago
  92. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  93. 0144f27 Remove locking part of new buffer protocol. by Travis E. Oliphant · 16 years ago
  94. ec2fe78 Issue 3501: Make heapq support both __le__ and __lt__. by Raymond Hettinger · 16 years ago
  95. f89b04c Performance improvement: Use PyDict_Get/SetItem instead of by Thomas Heller · 16 years ago
  96. fbb9c0b Issue #1798: Add ctypes calling convention that allows safe access of errno. by Thomas Heller · 16 years ago
  97. 2e75c45 Backport from py3k: Implement the new buffer interface from pep3118 by Thomas Heller · 16 years ago
  98. 5640ce2 MacOS X: Enable 4-way universal builds by Ronald Oussoren · 16 years ago
  99. d5bb921 Revert revisions 63943 and 63942 (Issue #1798: Add ctypes calling by Thomas Heller · 16 years ago
  100. 8f22b88 Fix ctypes.set_errno for gcc. by Thomas Heller · 16 years ago