1. 97a5722 Fix crash in test on HP-UX. Apparently, it's not possible to delete a lock if by Neal Norwitz · 19 years ago
  2. 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 19 years ago
  3. 0347a9a Get DBL_MAX from float.h not values.h. Will backport. by Martin v. Löwis · 19 years ago
  4. 443ccc7 Check for values.h. Will backport. by Martin v. Löwis · 19 years ago
  5. b5bc537 Patch #1549049: Rewrite type conversion in structmember. by Martin v. Löwis · 19 years ago
  6. 1b2f627 - Patch #1560695: Add .note.GNU-stack to ctypes' sysv.S so that by Martin v. Löwis · 19 years ago
  7. 10168f2 Patch #1580674: with this patch os.readlink uses the filesystem encoding to by Ronald Oussoren · 19 years ago
  8. a811c38 Fix various minor errors in passing arguments to PyArg_ParseTuple. by Martin v. Löwis · 19 years ago
  9. 79665b1 newIobject(): repaired incorrect cast to quiet MSVC warning. by Tim Peters · 19 years ago
  10. d2ea4a2 ctypes callback functions only support 'fundamental' result types. by Thomas Heller · 19 years ago
  11. 012bc72 Bug #1567666: Emulate GetFileAttributesExA for Win95. Will backport to 2.5. by Martin v. Löwis · 19 years ago
  12. 18aaa56 Patch #1576166: Support os.utime for directories on Windows NT+. by Martin v. Löwis · 19 years ago
  13. 5597e26 Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode by Georg Brandl · 19 years ago
  14. f43893a Bug #1565150: Fix subsecond processing for os.utime on Windows. by Martin v. Löwis · 19 years ago
  15. e5ec613 List gc.get_count() in the module docstring. by Barry Warsaw · 19 years ago
  16. b788346 Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault by Hye-Shik Chang · 19 years ago
  17. 36126c4 Cause a PyObject_Malloc() failure to trigger a MemoryError, and then by Andrew M. Kuchling · 19 years ago
  18. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
  19. 0d2f498 Compilation problem caused by conflicting typedefs for uint32_t by Armin Rigo · 19 years ago
  20. 4ddfcd3 Bug #1556784: allow format strings longer than 127 characters in by Georg Brandl · 19 years ago
  21. d3f9190 Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares. by Neal Norwitz · 19 years ago
  22. 36234e8 * regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t by Jack Diederich · 19 years ago
  23. 2fa0679 Fixes a bug with bsddb.DB.stat where the flags and txn keyword by Gregory P. Smith · 19 years ago
  24. 43fd99c Patch #1557515: Add RLIMIT_SBSIZE. by Martin v. Löwis · 19 years ago
  25. e2782bb Rewrite help message to remove some of the parentheticals. (There were a lot of them.) by Andrew M. Kuchling · 19 years ago
  26. 8964688 Make --help mention that -v can be supplied multiple times by Andrew M. Kuchling · 19 years ago
  27. 2244af5 The cast function did not accept c_char_p or c_wchar_p instances by Thomas Heller · 19 years ago
  28. fdb62f0 Anonymous structure fields that have a bit-width specified did not work, by Thomas Heller · 19 years ago
  29. 62e475b [Bug #1552726] Avoid repeatedly polling in interactive mode -- only put a timeout on the select() by Andrew M. Kuchling · 19 years ago
  30. 74bb783 Bug #1551427: fix a wrong NULL pointer check in the win32 version by Georg Brandl · 19 years ago
  31. 199f1db Fix a few bugs on cjkcodecs found by Oren Tirosh: by Hye-Shik Chang · 19 years ago
  32. 69e8897 Bug #1550714: fix SystemError from itertools.tee on negative value for n. by Neal Norwitz · 19 years ago
  33. 6aefa91 Bug #1548092: fix curses.tparm seg fault on invalid input. Needs backport to 2.5.1 and earlier. by Neal Norwitz · 19 years ago
  34. b1a7d75 Add missing file for _ctypes.pyd port to win64 on AMD64. by Thomas Heller · 19 years ago
  35. 98619f2 Port _ctypes.pyd to win64 on AMD64. by Thomas Heller · 19 years ago
  36. 9e398ca Fix SF bug #1545837: array.array borks on deepcopy. by Thomas Wouters · 19 years ago
  37. 60e96f6 Expose column offset information in parse trees. by Jeremy Hylton · 19 years ago
  38. 670f875 Alexander Belopolsky pointed out that pos is a size_t by Neal Norwitz · 19 years ago
  39. 076d1e0 Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 19 years ago
  40. 9b17eba Move assert to after NULL check, otherwise we deref NULL in the assert. by Neal Norwitz · 19 years ago
  41. 0b21b43 Add asserts to check for 'impossible' NULL values, with comments. by Thomas Heller · 19 years ago
  42. dc075b9 SF#1534630 by Fredrik Lundh · 19 years ago
  43. b4a0cf1 Remove the special casing of Py_None when converting the return value by Thomas Heller · 19 years ago
  44. b0aa98f The __repr__ method of a NULL py_object does no longer raise an by Thomas Heller · 19 years ago
  45. d32e616 Add commented assert statements to check that the result of by Thomas Heller · 19 years ago
  46. 4dc5dd1 Check for NULL return value from new_CArgObject calls. by Thomas Heller · 19 years ago
  47. 9dc7b7c Patch #1511317: don't crash on invalid hostname info by Georg Brandl · 19 years ago
  48. 3335a7a Patch #1535500: fix segfault in BZ2File.writelines and make sure it by Georg Brandl · 19 years ago
  49. ef8d513 Patch #1536908: Add support for AMD64 / OpenBSD. by Thomas Heller · 19 years ago
  50. 8672004 Apply the patch #1532975 plus ideas from the patch #1533481. by Thomas Heller · 19 years ago
  51. e6dd31c Revert the change that tries to zero out a closure's result storage by Thomas Heller · 19 years ago
  52. dca703f Check for NULL return value of GenericCData_new(). by Thomas Heller · 19 years ago
  53. efa2727 Check for NULL return value from new_CArgObject(). by Thomas Heller · 19 years ago
  54. acdedfb Remove unused, buggy test function. Fixes klockwork issue #207. by Thomas Heller · 19 years ago
  55. 5ed4997 Get rid of compiler warning by Neal Norwitz · 19 years ago
  56. 93bf902 Handle alloca failures. by Neal Norwitz · 19 years ago
  57. ccc56c7 Really address the issue of where to place the assert for leftblock. by Neal Norwitz · 19 years ago
  58. 20745b1 Handle failure from PyModule_GetDict() (Klocwork 208). by Neal Norwitz · 19 years ago
  59. 26a8abf Handle failures from lookup. by Neal Norwitz · 19 years ago
  60. ee7c8f9 It's very unlikely, though possible that source is not a string. Verify by Neal Norwitz · 19 years ago
  61. 5aa9689 Handle malloc and fopen failures more gracefully. by Neal Norwitz · 19 years ago
  62. e9ac0bb Check return result of PyModule_GetDict(). by Neal Norwitz · 19 years ago
  63. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
  64. ebcf875 Verify verdat which is returned from malloc is not NULL. by Neal Norwitz · 19 years ago
  65. 5f17d9a Don't deref v if it's NULL. by Neal Norwitz · 19 years ago
  66. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 19 years ago
  67. b45f351 I'm not sure why this code allocates this string for the error message. by Neal Norwitz · 19 years ago
  68. ef0de02 Try to handle a malloc failure. I'm not entirely sure this is correct. by Neal Norwitz · 19 years ago
  69. 9cd3c34 Move the assert which checks for a NULL pointer first. Klocwork #274. by Neal Norwitz · 19 years ago
  70. e0a81af If _stat_float_times is false, we will try to INCREF ival which could be NULL. by Neal Norwitz · 19 years ago
  71. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 19 years ago
  72. 2a899c8 When a ctypes C callback function is called, zero out the result by Thomas Heller · 19 years ago
  73. 789c09d Update dangling references to the 3.2 database to by Martin v. Löwis · 19 years ago
  74. 534fe18 Bug #1535081: A leading underscore has been added to the names of by Georg Brandl · 19 years ago
  75. e6c9f98 Fix #1530559, struct.pack raises TypeError where it used to convert. by Bob Ippolito · 19 years ago
  76. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 19 years ago
  77. 961b91b Correction of patch #1455898: In the mbcs decoder, set final=False by Martin v. Löwis · 19 years ago
  78. 9b0ca79 Patch #1519025 and bug #926423: If a KeyboardInterrupt occurs during by Neal Norwitz · 19 years ago
  79. c0328d1 v is already checked for NULL, so just DECREF it by Neal Norwitz · 19 years ago
  80. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 19 years ago
  81. 99dfe3c Prevent memory leak on error. by Neal Norwitz · 19 years ago
  82. d61d073 Speed up PyType_stgdict and PyObject_stgdict. by Thomas Heller · 19 years ago
  83. 11d68a6 Minimal useful docstring for CopyComPointer. by Thomas Heller · 19 years ago
  84. 3de83e9 Fix a potential segfault and various potentail refcount leaks by Thomas Heller · 19 years ago
  85. 07aadb1 Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn(). by Neal Norwitz · 19 years ago
  86. 8d9a01a Tweak wording by Andrew M. Kuchling · 19 years ago
  87. 1393d6a Patch #1529514: More openbsd platforms for ctypes. by Thomas Heller · 19 years ago
  88. 944f3b6 Remove a useless XXX comment. by Thomas Heller · 19 years ago
  89. cddabbf Fix spelling. by Georg Brandl · 19 years ago
  90. ec92650 Allow socketmodule to compile on NetBSD -current, whose bluetooth API by Matt Fleming · 19 years ago
  91. 641cddf - pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrename by Gregory P. Smith · 19 years ago
  92. 5566e96 defdict_reduce(): Plug leaks. by Tim Peters · 19 years ago
  93. 00decd7 Patch #1520294: Support for getset and member descriptors in types.py, by Barry Warsaw · 19 years ago
  94. 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 · 19 years ago
  95. a1da204 Correct error message by Andrew M. Kuchling · 19 years ago
  96. 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 · 19 years ago
  97. 5f13578 Part of bug #1523610: fix miscalculation of buffer length. by Georg Brandl · 19 years ago
  98. 982e9fe Bug #1524310: Properly report errors from FindNextFile in os.listdir. by Martin v. Löwis · 19 years ago
  99. dce937f Ensure we don't write beyond errText. I think I got this right, but by Neal Norwitz · 19 years ago
  100. 9029b5f nextlink can be NULL if teedataobject_new fails, so use XINCREF. by Neal Norwitz · 19 years ago