1. 7392811 - add missing chunk for patch #1117961 by Matthias Klose · 18 years ago
  2. 8e39ec7 - Patch #360466: Replace the MD5 implementation from RSA Data Security Inc by Matthias Klose · 18 years ago
  3. db5483b Try to fix the tests on OpenBSD. Apparently OpenBSD passes by Thomas Heller · 18 years ago
  4. ad89dc8 Bug #1451503: allow unicode filenames in os.startfile(). by Georg Brandl · 18 years ago
  5. 92a6be4 Whitespace: break long line by Neal Norwitz · 18 years ago
  6. 95f0e4c Make ssize_t clean by Neal Norwitz · 18 years ago
  7. 07f5b35 backport r243 from the pysqlite2 svn repository - lowers the required version by Anthony Baxter · 18 years ago
  8. 22a9dc8 Patch #1459631: documnent zlib.Decompress.flush() length parameter. by Georg Brandl · 18 years ago
  9. dcfdae7 Bug #1460564: document that socket.fromfd() duplicates the given by Georg Brandl · 18 years ago
  10. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago
  11. 2a9a6b0 In the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 if by Thomas Wouters · 18 years ago
  12. 644b1e7 Add guards against fcntl() not being available on Windows. by Georg Brandl · 18 years ago
  13. 54a188a bug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode. by Georg Brandl · 18 years ago
  14. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 18 years ago
  15. d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 18 years ago
  16. 3987df5 Try to build _ctypes on x86 openbsd. by Thomas Heller · 18 years ago
  17. 62e97f0 In format strings slinging Py_ssize_t, unconditionally by Tim Peters · 18 years ago
  18. 7491d2a Try to get rid of a Coverity warning by consistently using origpending. by Neal Norwitz · 18 years ago
  19. 19bf33b Make itertools.tee and its internal teedataobject participate in GC. This by Thomas Wouters · 18 years ago
  20. b9c03e9 Fix reference leaks introduced by the recent incremental codec changes. by Hye-Shik Chang · 18 years ago
  21. c9d78aa Years in the making. by Tim Peters · 18 years ago
  22. 04904fa Utilize %zd for Py_ssize_t formatting instead of casting to long. by Hye-Shik Chang · 18 years ago
  23. 9f4b632 Allow long objects as a position value of error callbacks returned. by Hye-Shik Chang · 18 years ago
  24. e2ac4ab Patch #1443155: Add the incremental codecs support for CJK codecs. by Hye-Shik Chang · 18 years ago
  25. 1818ed7 Try to fix broken compile on openbsd. by Neal Norwitz · 18 years ago
  26. bcfccca Fix some int/Py_ssize_t issues which led to compiler warnings by Thomas Heller · 18 years ago
  27. 59feb6f Include <malloc.h> on windows, to avoid warnings when compiling with mingw. by Thomas Heller · 18 years ago
  28. 59b96c1 Try to repair at least one segfault on the Mac buildbot, by Tim Peters · 18 years ago
  29. e502693 Avoid a potential double-free bug. by Thomas Heller · 18 years ago
  30. ba29e4c Apply patch from Martin v. Loewis: Avoid function pointer casts. by Thomas Heller · 18 years ago
  31. 9b00a56 Damn Coverity. I can't even sneak in a leak any more. :-) by Neal Norwitz · 18 years ago
  32. 711e7f0 Fix another bug found by Coverty. by Thomas Heller · 18 years ago
  33. e2061dc Fix bug found by Coverty. by Thomas Heller · 18 years ago
  34. d59ca8f Accessing unaligned structure fields works now on all architectures. by Thomas Heller · 18 years ago
  35. 6c2f913 The helper is only necessary for wait3/4. by Neal Norwitz · 18 years ago
  36. d5a3754 Try to cleanup a lot of boilerplate #ifdef wrt wait types and make the code by Neal Norwitz · 18 years ago
  37. 49c65d0 Make some functions static, reformat function decl to be consistent and check for error from PyModule_GetDict() by Neal Norwitz · 18 years ago
  38. 05a4559 Patch #1309579: wait3 and wait4 were added to the posix module by Chad J. Schroeder. by Neal Norwitz · 18 years ago
  39. 1747143 replace use of int16_t with a (typedef'd) short, to fix Windows buildbots. by Anthony Baxter · 18 years ago
  40. fa86907 SF [ 1231053 ] audioop - alaw encoding/decoding added, code updated by Anthony Baxter · 18 years ago
  41. d1e0ef6 SF #1445431, fix some leaks in error conditions. by Neal Norwitz · 18 years ago
  42. d5b0c9b Fix problem spotted by Coverity that occurs if tzinfo.tzname().replace() by Neal Norwitz · 18 years ago
  43. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 18 years ago
  44. 9ae019b Add tests for the C APIs PyCodec_IncrementalEncoder() and by Walter Dörwald · 18 years ago
  45. f4063ca Fix compiler warning. by Thomas Heller · 18 years ago
  46. bc45a3f RFE #567972: Socket objects' family, type and proto properties are by Georg Brandl · 18 years ago
  47. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  48. b03cb60 Merge changes from the upstream version: by Thomas Heller · 18 years ago
  49. 0c6b0e9 Fix a leak that would happen under error conditions (found by Coverty). by Thomas Heller · 18 years ago
  50. aa47570 Use int 0 as default defval for LCID if nothing has been supplied. by Thomas Heller · 18 years ago
  51. b216761 Fix compiler warning. by Thomas Heller · 18 years ago
  52. 4c9dfc8 Fixes from Neal Norwitz, plus other small fixes. by Thomas Heller · 18 years ago
  53. 1275516 Rewrite the AllocFunctionCallback function for better error handling. by Thomas Heller · 18 years ago
  54. 10be10c Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. by Neal Norwitz · 18 years ago
  55. 94a9c09 Rename sre.py -> re.py by Neal Norwitz · 18 years ago
  56. 197e832 SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError by Walter Dörwald · 18 years ago
  57. 9998f78 Backport from upstream version: compatibility with older Python versions. by Thomas Heller · 18 years ago
  58. e2ebb2d Implement PEP 338 which has been marked as accepted by GvR by Nick Coghlan · 18 years ago
  59. 8ea61f1 Revert rev 43041, which introduced the "z" format qualifier by Tim Peters · 18 years ago
  60. ab8aeba CField_repr(): PyString_FromFormat() understands the by Tim Peters · 18 years ago
  61. 4a53dad Move test code out of xxmodule and into _testcapimodule.c where it belongs. by Neal Norwitz · 18 years ago
  62. 915d777 Try to avoid many of the compiler warnings when compiling libffi by by Thomas Heller · 18 years ago
  63. ab906a5 Cast an Py_ssize_t to int, to avoid a compiler warning. by Thomas Heller · 18 years ago
  64. fe8f862 Integrate patch from Neal Norwitz. He writes: by Thomas Heller · 18 years ago
  65. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 18 years ago
  66. abb903f Bug #1448490: Fix a bug that ISO-2022 codecs could not handle by Hye-Shik Chang · 18 years ago
  67. 44ed4db merged with cElementTree development trunk (1.0.6 snapshot): by Fredrik Lundh · 18 years ago
  68. b2820ae Fix another leak in bsddb, and avoid use of uninitialized value -- funny how by Thomas Wouters · 18 years ago
  69. c350912 Adjust CJK Ideograph range to Unicode 4.1. by Martin v. Löwis · 18 years ago
  70. 0e2f9b2 Fix refcounting bug. by Martin v. Löwis · 18 years ago
  71. 5bd7c02 Avoid forward-declaring the methods array. by Martin v. Löwis · 18 years ago
  72. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  73. 480f1bb Update Unicode database to Unicode 4.1. by Martin v. Löwis · 18 years ago
  74. 72c2c06 Try to be a bit more consistent on all platforms: python . python < . by Neal Norwitz · 18 years ago
  75. d4c9320 Copy ctypes-0.9.9.4 sources from external into the trunk. by Thomas Heller · 18 years ago
  76. f3c4ad1 typo by Georg Brandl · 18 years ago
  77. 2f5e990 Fix logic error and DECREF reported by Coverity. by Neal Norwitz · 18 years ago
  78. b315383 Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful of by Thomas Wouters · 18 years ago
  79. e920f0d Reformulate 42903 using an if statement. by Martin v. Löwis · 18 years ago
  80. df44ab7 _hotshot hotshot_profiler(): If write_header() returned by Tim Peters · 18 years ago
  81. 516999e Fix bug introduced in rev. 42884. by Georg Brandl · 18 years ago
  82. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  83. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  84. ef1701f Add additional missing checks for return vals of PyTuple_New(). by Georg Brandl · 18 years ago
  85. 89ba381 Fix gcc 4.0.x warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  86. 098f694 Coverity found bug: test result of PyTuple_New() against NULL before use. by Thomas Wouters · 18 years ago
  87. a74a84d Coverity found refleak: need to free 'v' after calling Tkinter_Error(). by Thomas Wouters · 18 years ago
  88. 47f003d Coverity-found bug: don't use temp->next *before* checking it for NULL. Also by Thomas Wouters · 18 years ago
  89. 622927b Bug #1432525: os.listdir now releases the GIL while calling readdir(). by Georg Brandl · 18 years ago
  90. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 18 years ago
  91. 8eb8a82 Don't DECREF a borrowed reference. by Thomas Wouters · 18 years ago
  92. d3c38ff SF patch #1443865; gc.get_count() added and optional argument 'generation' by Barry Warsaw · 18 years ago
  93. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 18 years ago
  94. e22373d Fix warnings on x86 (32-bit) and support Win64. by Neal Norwitz · 18 years ago
  95. 32feb85 Check NULL if Py_InitModule fails. by Hye-Shik Chang · 18 years ago
  96. 7b216c5 Make PyGC_Collect() use Py_ssize_t. by Neal Norwitz · 18 years ago
  97. 4b96c13 - Modernize code to use Py_ssize_t more intensively. by Hye-Shik Chang · 18 years ago
  98. 857b300 Explain why we use the unsigned int format for a signed int variable. by Thomas Wouters · 18 years ago
  99. 83d1266 Properly fix Py_SAFE_DOWNCAST-triggerd bugs. by Thomas Wouters · 18 years ago
  100. 369092b Py_SAFE_DOWNCAST isn't quite doing the right thing for going from Py_ssize_t by Thomas Wouters · 18 years ago