1. afa358f Get mailbox module working on OS/2 EMX port. by Andrew MacIntyre · 18 years ago
  2. 82247cb bugfix: PyThread_start_new_thread() returns the thread ID, not a flag; by Andrew MacIntyre · 18 years ago
  3. bb45037 Build updates for OS/2 EMX port by Andrew MacIntyre · 18 years ago
  4. 8133f9d Fix for bug #1517996: Class and Path browsers show Tk menu by Ronald Oussoren · 18 years ago
  5. 17db495 Without this patch CMD-W won't close EditorWindows on MacOS X. This solves by Ronald Oussoren · 18 years ago
  6. dce937f Ensure we don't write beyond errText. I think I got this right, but by Neal Norwitz · 18 years ago
  7. 9029b5f nextlink can be NULL if teedataobject_new fails, so use XINCREF. by Neal Norwitz · 18 years ago
  8. 98a9600 Fix memory leaks spotted by Klocwork #37. by Neal Norwitz · 18 years ago
  9. 93f2ca1 Check the allocation of b_objects and return if there was a failure. by Neal Norwitz · 18 years ago
  10. c09efa8 Move the initialization of size_a down below the check for a being NULL. by Neal Norwitz · 18 years ago
  11. f71847e If the for loop isn't entered, entryblock will be NULL. If passed by Neal Norwitz · 18 years ago
  12. 18b6adf Handle more mem alloc issues found with failmalloc by Neal Norwitz · 18 years ago
  13. c6bacd5 Tooltips failed on new-syle class __init__ args. Bug 1027566 Loren Guthrie by Kurt B. Kaiser · 18 years ago
  14. 7802af4 Be a lot smarter about whether this test passes: instead of assuming by Greg Ward · 18 years ago
  15. cde0fa9 Don't fail if the directory already exists by Neal Norwitz · 18 years ago
  16. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 18 years ago
  17. 468e45e Remove an XXX marker in a comment. by Brett Cannon · 18 years ago
  18. 4085f14 Fix check for empty list (vs. None). by Georg Brandl · 18 years ago
  19. b110bad More RFC 2231 improvements for the email 4.0 package. As Mark Sapiro rightly by Barry Warsaw · 18 years ago
  20. d12bd01 Handle more memory allocation failures without crashing. by Neal Norwitz · 18 years ago
  21. 33722ae Speel initialise write. Tanks Anthony. by Neal Norwitz · 18 years ago
  22. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  23. 1adbb50 Move the initialization of some pointers earlier. The problem is by Neal Norwitz · 18 years ago
  24. 48808a1 Add some asserts that we got good params passed by Neal Norwitz · 18 years ago
  25. dc57936 Addressed SF#1524081 by using a dictionary to map level names to syslog priority names, rather than a string.lower(). by Vinay Sajip · 18 years ago
  26. 43476e0 Avoid occasional failure to detect closing paren properly. by Kurt B. Kaiser · 18 years ago
  27. 3fda936 markup fix by Fred Drake · 18 years ago
  28. 9325ba6 Updated documentation for TimedRotatingFileHandler relating to how rollover files are named. The previous documentation was wrongly the same as for RotatingFileHandler. by Vinay Sajip · 18 years ago
  29. 13cf38c Guard for _active being None in __del__ method. by Georg Brandl · 18 years ago
  30. 1a2959c Fix SF#1516184 (again) and add a test to prevent regression. by Phillip J. Eby · 18 years ago
  31. cfe3128 Revert r50706 (Whitespace normalization) and by Martin v. Löwis · 18 years ago
  32. 100a4e9 Make sure the _ctypes extension can be compiled when WITH_THREAD is by Thomas Heller · 18 years ago
  33. 112aad3 SF bug 1524317: configure --without-threads fails to build by Tim Peters · 18 years ago
  34. 73a9ead Whitespace normalization. by Tim Peters · 18 years ago
  35. 426f4a1 Patch #1524429: Use repr instead of backticks again. by Martin v. Löwis · 18 years ago
  36. ac4ae4b Comments and docs cleanups, and some little fixes, provided by Santiágo Peresón by Facundo Batista · 18 years ago
  37. caebe22 Fix bug #1520914. Starting in 2.4, time.strftime() began to check the bounds by Brett Cannon · 18 years ago
  38. 4b7e35b Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168. by Kurt B. Kaiser · 18 years ago
  39. 18d2f39 decode_rfc2231(): Be more robust against buggy RFC 2231 encodings. by Barry Warsaw · 18 years ago
  40. a2f60a4 Patch 1479219 - Tal Einat by Kurt B. Kaiser · 18 years ago
  41. 7a752e7 Attribute more features by Andrew M. Kuchling · 18 years ago
  42. c5e3d8a Add missing NEWS item (#1522771) by Georg Brandl · 18 years ago
  43. 7b71bf3 Remove usage of sets module (patch #1500609). by Georg Brandl · 18 years ago
  44. 83fa22f document xmlcore (still minimal; needs mention in each of the xml.* modules) by Fred Drake · 18 years ago
  45. e756310 Add NEWS entry for a bunch of fixes due to warnings produced by Klocworks static analysis tool. by Neal Norwitz · 18 years ago
  46. a5e4f22 Reported by Klocwork #151. by Neal Norwitz · 18 years ago
  47. 04e39ec otherset is known to be non-NULL based on checks before and DECREF after. by Neal Norwitz · 18 years ago
  48. b337bb5 Stop INCREFing name, then checking if it's NULL. name (f_name) should never by Neal Norwitz · 18 years ago
  49. ee4cc69 PyFunction_SetDefaults() is documented as taking None or a tuple. by Neal Norwitz · 18 years ago
  50. fc28e0d Handle a NULL name properly. by Neal Norwitz · 18 years ago
  51. 4b0a315 Use sizeof(buffer) instead of duplicating the constants to ensure they won't by Neal Norwitz · 18 years ago
  52. c0cde4d Fix memory leak under some conditions. by Neal Norwitz · 18 years ago
  53. 5eaf772 Fix memory leaks in some conditions. by Neal Norwitz · 18 years ago
  54. 109f914 proto was dereffed above and is known to be good. No need for X. by Neal Norwitz · 18 years ago
  55. ce5b3c3 self is dereffed (and passed as first arg), so it's known to be good. by Neal Norwitz · 18 years ago
  56. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 18 years ago
  57. 84be93b Bug #1512814, Fix incorrect lineno's when code within a function by Neal Norwitz · 18 years ago
  58. ec5948a clean up some link markup by Fred Drake · 18 years ago
  59. 5ea4bf1 Patch #1220874: Update the binhex module for Mach-O. by Bob Ippolito · 18 years ago
  60. b2d5af8 Bug #15187702 : ext/win-cookbook.html has a broken link to distutils by George Yoshida · 18 years ago
  61. 76e268b typo by Fredrik Lundh · 18 years ago
  62. b69a3c2 Updates for the ctypes documentation. by Thomas Heller · 18 years ago
  63. ce049a0 Patch #1521817: The index range checking on ctypes arrays containing by Thomas Heller · 18 years ago
  64. 9f90247 Make the prototypes of our private PyUnicode_FromWideChar and by Thomas Heller · 18 years ago
  65. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 18 years ago
  66. 8c051da Mention new options by Andrew M. Kuchling · 18 years ago
  67. c7990b5 Fix Debug build of _ssl. by Martin v. Löwis · 18 years ago
  68. 1def4fa Add debug output to analyse buildbot failure. by Martin v. Löwis · 18 years ago
  69. d73168d Extend build_ssl to Win64, using VSExtComp. by Martin v. Löwis · 18 years ago
  70. eda8712 Try to improve grammar further. by Neal Norwitz · 18 years ago
  71. 13b78d5 Patch #1521874: grammar errors in doanddont.tex. by Georg Brandl · 18 years ago
  72. b7eca83 Typo fix by Andrew M. Kuchling · 18 years ago
  73. 6e1ad2e Fix misleading words. by Thomas Heller · 18 years ago
  74. 2bdf29e Fix #1521375. When running with root priviledges, 'gcc -o /dev/null' by Thomas Heller · 18 years ago
  75. b4dc2ef A misspelled preprocessor symbol caused ctypes to be always compiled by Thomas Heller · 18 years ago
  76. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 18 years ago
  77. 76c5af6 Fix the wrong description of LibraryLoader.LoadLibrary, and document by Thomas Heller · 18 years ago
  78. 47d7a06 Fix #1467450: ctypes now uses RTLD_GLOBAL by default on OSX 10.3 to by Thomas Heller · 18 years ago
  79. a1f1090 Actually change the MAGIC #. Create a new section for 2.5c1 and mention the impact of changing the MAGIC #. by Neal Norwitz · 18 years ago
  80. 7e49c6e Fix uninitialized memory read reported by Valgrind when running doctest. by Neal Norwitz · 18 years ago
  81. 41efc14 Fix function name in error msg by Neal Norwitz · 18 years ago
  82. edef2be Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again. by Neal Norwitz · 18 years ago
  83. 3b9be2a Change the ctypes version number to 1.0.0. by Thomas Heller · 18 years ago
  84. a42a662 When a foreign function is retrived by calling __getitem__ on a ctypes by Thomas Heller · 18 years ago
  85. b0aa54e Bump version number; add sys._current_frames by Andrew M. Kuchling · 18 years ago
  86. 249f6b1 Add missing Py_DECREFs. by Thomas Heller · 18 years ago
  87. dd82734 Add missing Py_DECREF. by Thomas Heller · 18 years ago
  88. e0c3adf Tagging for release of Python 2.5b2 by Anthony Baxter · 18 years ago
  89. 12c00f7 Whitespace normalization. by Tim Peters · 18 years ago
  90. 93ab5fa #1494314: Fix a regression with high-numbered sockets in 2.4.3. This by Anthony Baxter · 18 years ago
  91. 06c68b8 Patch #1519566: Remove unused _tofill member. by Martin v. Löwis · 18 years ago
  92. 722b883 Whitespace normalization. by Tim Peters · 18 years ago
  93. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
  94. 2b221ed Make it possible to run test_subprocess.py with Python 2.2, which lacks test_support.reap_children(). by Peter Astrand · 18 years ago
  95. 137ff79 Fix SF#1457312: bad socket error handling in distutils "upload" command. by Phillip J. Eby · 18 years ago
  96. 5d86bdb Fix SF#1516184 and add a test to prevent regression. by Phillip J. Eby · 18 years ago
  97. b9cb84f Moved the ctypes news entries from the 'Library' section into the by Thomas Heller · 18 years ago
  98. 7644262 Assigning None to pointer type structure fields possible overwrote wrong fields. by Thomas Heller · 18 years ago
  99. 7b1da51 Fixed a segfault when ctypes.wintypes were imported on non-Windows machines. by Thomas Heller · 18 years ago
  100. dda068d Fix bug #1518190: accept any integer or long value in the by Thomas Heller · 18 years ago