1. d79524a [Backport to 2-5maint of r52147 | andrew.kuchling ; the buildbots seem OK by Andrew M. Kuchling · 18 years ago
  2. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  3. c6f2f88 Compilation problem caused by conflicting typedefs for uint32_t by Armin Rigo · 18 years ago
  4. 6d7c363 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 18 years ago
  5. 6fed793 fix: DB.stat flags and txn keyword arguments were backwards. by Gregory P. Smith · 18 years ago
  6. b14b59f Backport rev. 51987: superfluous semicola. by Georg Brandl · 18 years ago
  7. 187e648 backport of r51950 by Jack Diederich · 18 years ago
  8. 5728c27 Backport rev 51820 from Thomas Heller by Neal Norwitz · 18 years ago
  9. 71e2aa0 Backport rev 51819 from Thomas Heller by Neal Norwitz · 18 years ago
  10. 137ae0c Backport from trunk r51737: by Hye-Shik Chang · 18 years ago
  11. 291a1b8 Backport of r51379 from trunk: by Thomas Heller · 18 years ago
  12. b20cb33 Bug #1551427: fix a wrong NULL pointer check in the win32 version by Georg Brandl · 18 years ago
  13. 716692f Backport fix from 51683. by Neal Norwitz · 18 years ago
  14. 7ae5f29 Backport fix for SF bug #1550714, itertools.tee raises SystemError by Neal Norwitz · 18 years ago
  15. 7b3c031 Alexander Belopolsky pointed out that pos is a size_t by Neal Norwitz · 18 years ago
  16. 47f0ffa Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 18 years ago
  17. 03ee62c Move assert to after NULL check, otherwise we deref NULL in the assert. by Neal Norwitz · 18 years ago
  18. dc075b9 SF#1534630 by Fredrik Lundh · 18 years ago
  19. b4a0cf1 Remove the special casing of Py_None when converting the return value by Thomas Heller · 18 years ago
  20. b0aa98f The __repr__ method of a NULL py_object does no longer raise an by Thomas Heller · 18 years ago
  21. d32e616 Add commented assert statements to check that the result of by Thomas Heller · 18 years ago
  22. 4dc5dd1 Check for NULL return value from new_CArgObject calls. by Thomas Heller · 18 years ago
  23. 9dc7b7c Patch #1511317: don't crash on invalid hostname info by Georg Brandl · 18 years ago
  24. 3335a7a Patch #1535500: fix segfault in BZ2File.writelines and make sure it by Georg Brandl · 18 years ago
  25. ef8d513 Patch #1536908: Add support for AMD64 / OpenBSD. by Thomas Heller · 18 years ago
  26. 8672004 Apply the patch #1532975 plus ideas from the patch #1533481. by Thomas Heller · 18 years ago
  27. e6dd31c Revert the change that tries to zero out a closure's result storage by Thomas Heller · 18 years ago
  28. dca703f Check for NULL return value of GenericCData_new(). by Thomas Heller · 18 years ago
  29. efa2727 Check for NULL return value from new_CArgObject(). by Thomas Heller · 18 years ago
  30. acdedfb Remove unused, buggy test function. Fixes klockwork issue #207. by Thomas Heller · 18 years ago
  31. 5ed4997 Get rid of compiler warning by Neal Norwitz · 18 years ago
  32. 93bf902 Handle alloca failures. by Neal Norwitz · 18 years ago
  33. ccc56c7 Really address the issue of where to place the assert for leftblock. by Neal Norwitz · 18 years ago
  34. 20745b1 Handle failure from PyModule_GetDict() (Klocwork 208). by Neal Norwitz · 18 years ago
  35. 26a8abf Handle failures from lookup. by Neal Norwitz · 18 years ago
  36. ee7c8f9 It's very unlikely, though possible that source is not a string. Verify by Neal Norwitz · 18 years ago
  37. 5aa9689 Handle malloc and fopen failures more gracefully. by Neal Norwitz · 18 years ago
  38. e9ac0bb Check return result of PyModule_GetDict(). by Neal Norwitz · 18 years ago
  39. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  40. ebcf875 Verify verdat which is returned from malloc is not NULL. by Neal Norwitz · 18 years ago
  41. 5f17d9a Don't deref v if it's NULL. by Neal Norwitz · 18 years ago
  42. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  43. b45f351 I'm not sure why this code allocates this string for the error message. by Neal Norwitz · 18 years ago
  44. ef0de02 Try to handle a malloc failure. I'm not entirely sure this is correct. by Neal Norwitz · 18 years ago
  45. 9cd3c34 Move the assert which checks for a NULL pointer first. Klocwork #274. by Neal Norwitz · 18 years ago
  46. e0a81af If _stat_float_times is false, we will try to INCREF ival which could be NULL. by Neal Norwitz · 18 years ago
  47. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 18 years ago
  48. 2a899c8 When a ctypes C callback function is called, zero out the result by Thomas Heller · 18 years ago
  49. 789c09d Update dangling references to the 3.2 database to by Martin v. Löwis · 18 years ago
  50. 534fe18 Bug #1535081: A leading underscore has been added to the names of by Georg Brandl · 18 years ago
  51. e6c9f98 Fix #1530559, struct.pack raises TypeError where it used to convert. by Bob Ippolito · 18 years ago
  52. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 18 years ago
  53. 961b91b Correction of patch #1455898: In the mbcs decoder, set final=False by Martin v. Löwis · 18 years ago
  54. 9b0ca79 Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during by Neal Norwitz · 18 years ago
  55. c0328d1 v is already checked for NULL, so just DECREF it by Neal Norwitz · 18 years ago
  56. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 18 years ago
  57. 99dfe3c Prevent memory leak on error. by Neal Norwitz · 18 years ago
  58. d61d073 Speed up PyType_stgdict and PyObject_stgdict. by Thomas Heller · 18 years ago
  59. 11d68a6 Minimal useful docstring for CopyComPointer. by Thomas Heller · 18 years ago
  60. 3de83e9 Fix a potential segfault and various potentail refcount leaks by Thomas Heller · 18 years ago
  61. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 18 years ago
  62. 8d9a01a Tweak wording by Andrew M. Kuchling · 18 years ago
  63. 1393d6a Patch #1529514: More openbsd platforms for ctypes. by Thomas Heller · 18 years ago
  64. 944f3b6 Remove a useless XXX comment. by Thomas Heller · 18 years ago
  65. cddabbf Fix spelling. by Georg Brandl · 18 years ago
  66. ec92650 Allow socketmodule to compile on NetBSD -current, whose bluetooth API by Matt Fleming · 18 years ago
  67. 641cddf - pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrename by Gregory P. Smith · 18 years ago
  68. 5566e96 defdict_reduce(): Plug leaks. by Tim Peters · 18 years ago
  69. 00decd7 Patch #1520294: Support for getset and member descriptors in types.py, by Barry Warsaw · 18 years ago
  70. 37f694f No functional change. Add comment and assert to describe why there cannot be overflow which was reported by Klocwork. Discussed on python-dev by Neal Norwitz · 18 years ago
  71. a1da204 Correct error message by Andrew M. Kuchling · 18 years ago
  72. 55b0a0e [Bug #1471938] Fix build problem on Solaris 8 by conditionalizing the use of mvwgetnstr(); it was conditionalized a few lines below. Fix from Paul Eggert. I also tried out the STRICT_SYSV_CURSES case and am therefore removing the 'untested' comment. by Andrew M. Kuchling · 18 years ago
  73. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 18 years ago
  74. 982e9fe Bug #1524310: Properly report errors from FindNextFile in os.listdir. by Martin v. Löwis · 18 years ago
  75. dce937f Ensure we don't write beyond errText. I think I got this right, but by Neal Norwitz · 18 years ago
  76. 9029b5f nextlink can be NULL if teedataobject_new fails, so use XINCREF. by Neal Norwitz · 18 years ago
  77. 98a9600 Fix memory leaks spotted by Klocwork #37. by Neal Norwitz · 18 years ago
  78. 93f2ca1 Check the allocation of b_objects and return if there was a failure. by Neal Norwitz · 18 years ago
  79. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 18 years ago
  80. 468e45e Remove an XXX marker in a comment. by Brett Cannon · 18 years ago
  81. 100a4e9 Make sure the _ctypes extension can be compiled when WITH_THREAD is by Thomas Heller · 18 years ago
  82. caebe22 Fix bug #1520914. Starting in 2.4, time.strftime() began to check the bounds by Brett Cannon · 18 years ago
  83. 5eaf772 Fix memory leaks in some conditions. by Neal Norwitz · 18 years ago
  84. 109f914 proto was dereffed above and is known to be good. No need for X. by Neal Norwitz · 18 years ago
  85. ce5b3c3 self is dereffed (and passed as first arg), so it's known to be good. by Neal Norwitz · 18 years ago
  86. ce049a0 Patch #1521817: The index range checking on ctypes arrays containing by Thomas Heller · 18 years ago
  87. 9f90247 Make the prototypes of our private PyUnicode_FromWideChar and by Thomas Heller · 18 years ago
  88. b4dc2ef A misspelled preprocessor symbol caused ctypes to be always compiled by Thomas Heller · 18 years ago
  89. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 18 years ago
  90. 41efc14 Fix function name in error msg by Neal Norwitz · 18 years ago
  91. 3b9be2a Change the ctypes version number to 1.0.0. by Thomas Heller · 18 years ago
  92. 93ab5fa #1494314: Fix a regression with high-numbered sockets in 2.4.3. This by Anthony Baxter · 18 years ago
  93. 7644262 Assigning None to pointer type structure fields possible overwrote wrong fields. by Thomas Heller · 18 years ago
  94. 7b1da51 Fixed a segfault when ctypes.wintypes were imported on non-Windows machines. by Thomas Heller · 18 years ago
  95. dda068d Fix bug #1518190: accept any integer or long value in the by Thomas Heller · 18 years ago
  96. 2a30cd0 Patch #1516912: improve Modules support for OpenVMS. by Neal Norwitz · 18 years ago
  97. 5becdbe Patch #1517790: It is now possible to use custom objects in the ctypes by Thomas Heller · 18 years ago
  98. 43d9a58 Revert the change done in svn revision 47206: by Thomas Heller · 18 years ago
  99. 24a0f41 - back out Expat change; the final fix to Expat will be different by Fred Drake · 18 years ago
  100. 9ba7ca8 Fix the bitfield test when _ctypes is compiled with MingW. Structures by Thomas Heller · 18 years ago