1. caebe22 Fix bug #1520914. Starting in 2.4, time.strftime() began to check the bounds by Brett Cannon · 18 years ago
  2. 4b7e35b Rebinding Tab key was inserting 'tab' instead of 'Tab'. Bug 1179168. by Kurt B. Kaiser · 18 years ago
  3. 18d2f39 decode_rfc2231(): Be more robust against buggy RFC 2231 encodings. by Barry Warsaw · 18 years ago
  4. a2f60a4 Patch 1479219 - Tal Einat by Kurt B. Kaiser · 18 years ago
  5. 7a752e7 Attribute more features by Andrew M. Kuchling · 18 years ago
  6. c5e3d8a Add missing NEWS item (#1522771) by Georg Brandl · 18 years ago
  7. 7b71bf3 Remove usage of sets module (patch #1500609). by Georg Brandl · 18 years ago
  8. 83fa22f document xmlcore (still minimal; needs mention in each of the xml.* modules) by Fred Drake · 18 years ago
  9. e756310 Add NEWS entry for a bunch of fixes due to warnings produced by Klocworks static analysis tool. by Neal Norwitz · 18 years ago
  10. a5e4f22 Reported by Klocwork #151. by Neal Norwitz · 18 years ago
  11. 04e39ec otherset is known to be non-NULL based on checks before and DECREF after. by Neal Norwitz · 18 years ago
  12. b337bb5 Stop INCREFing name, then checking if it's NULL. name (f_name) should never by Neal Norwitz · 18 years ago
  13. ee4cc69 PyFunction_SetDefaults() is documented as taking None or a tuple. by Neal Norwitz · 18 years ago
  14. fc28e0d Handle a NULL name properly. by Neal Norwitz · 18 years ago
  15. 4b0a315 Use sizeof(buffer) instead of duplicating the constants to ensure they won't by Neal Norwitz · 18 years ago
  16. c0cde4d Fix memory leak under some conditions. by Neal Norwitz · 18 years ago
  17. 5eaf772 Fix memory leaks in some conditions. by Neal Norwitz · 18 years ago
  18. 109f914 proto was dereffed above and is known to be good. No need for X. by Neal Norwitz · 18 years ago
  19. ce5b3c3 self is dereffed (and passed as first arg), so it's known to be good. by Neal Norwitz · 18 years ago
  20. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 18 years ago
  21. 84be93b Bug #1512814, Fix incorrect lineno's when code within a function by Neal Norwitz · 18 years ago
  22. ec5948a clean up some link markup by Fred Drake · 18 years ago
  23. 5ea4bf1 Patch #1220874: Update the binhex module for Mach-O. by Bob Ippolito · 18 years ago
  24. b2d5af8 Bug #15187702 : ext/win-cookbook.html has a broken link to distutils by George Yoshida · 18 years ago
  25. 76e268b typo by Fredrik Lundh · 18 years ago
  26. b69a3c2 Updates for the ctypes documentation. by Thomas Heller · 18 years ago
  27. ce049a0 Patch #1521817: The index range checking on ctypes arrays containing by Thomas Heller · 18 years ago
  28. 9f90247 Make the prototypes of our private PyUnicode_FromWideChar and by Thomas Heller · 18 years ago
  29. 7d1d436 Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode. by Peter Astrand · 18 years ago
  30. 8c051da Mention new options by Andrew M. Kuchling · 18 years ago
  31. c7990b5 Fix Debug build of _ssl. by Martin v. Löwis · 18 years ago
  32. 1def4fa Add debug output to analyse buildbot failure. by Martin v. Löwis · 18 years ago
  33. d73168d Extend build_ssl to Win64, using VSExtComp. by Martin v. Löwis · 18 years ago
  34. eda8712 Try to improve grammar further. by Neal Norwitz · 18 years ago
  35. 13b78d5 Patch #1521874: grammar errors in doanddont.tex. by Georg Brandl · 18 years ago
  36. b7eca83 Typo fix by Andrew M. Kuchling · 18 years ago
  37. 6e1ad2e Fix misleading words. by Thomas Heller · 18 years ago
  38. 2bdf29e Fix #1521375. When running with root priviledges, 'gcc -o /dev/null' by Thomas Heller · 18 years ago
  39. b4dc2ef A misspelled preprocessor symbol caused ctypes to be always compiled by Thomas Heller · 18 years ago
  40. 9dceedb Accept long options "--help" and "--version". by Georg Brandl · 18 years ago
  41. 76c5af6 Fix the wrong description of LibraryLoader.LoadLibrary, and document by Thomas Heller · 18 years ago
  42. 47d7a06 Fix #1467450: ctypes now uses RTLD_GLOBAL by default on OSX 10.3 to by Thomas Heller · 18 years ago
  43. 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
  44. 7e49c6e Fix uninitialized memory read reported by Valgrind when running doctest. by Neal Norwitz · 18 years ago
  45. 41efc14 Fix function name in error msg by Neal Norwitz · 18 years ago
  46. edef2be Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again. by Neal Norwitz · 18 years ago
  47. 3b9be2a Change the ctypes version number to 1.0.0. by Thomas Heller · 18 years ago
  48. a42a662 When a foreign function is retrived by calling __getitem__ on a ctypes by Thomas Heller · 18 years ago
  49. b0aa54e Bump version number; add sys._current_frames by Andrew M. Kuchling · 18 years ago
  50. 249f6b1 Add missing Py_DECREFs. by Thomas Heller · 18 years ago
  51. dd82734 Add missing Py_DECREF. by Thomas Heller · 18 years ago
  52. e0c3adf Tagging for release of Python 2.5b2 by Anthony Baxter · 18 years ago
  53. 12c00f7 Whitespace normalization. by Tim Peters · 18 years ago
  54. 93ab5fa #1494314: Fix a regression with high-numbered sockets in 2.4.3. This by Anthony Baxter · 18 years ago
  55. 06c68b8 Patch #1519566: Remove unused _tofill member. by Martin v. Löwis · 18 years ago
  56. 722b883 Whitespace normalization. by Tim Peters · 18 years ago
  57. 32a8361 After approval from Anthony, merge the tim-current_frames by Tim Peters · 18 years ago
  58. 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
  59. 137ff79 Fix SF#1457312: bad socket error handling in distutils "upload" command. by Phillip J. Eby · 18 years ago
  60. 5d86bdb Fix SF#1516184 and add a test to prevent regression. by Phillip J. Eby · 18 years ago
  61. b9cb84f Moved the ctypes news entries from the 'Library' section into the by Thomas Heller · 18 years ago
  62. 7644262 Assigning None to pointer type structure fields possible overwrote wrong fields. by Thomas Heller · 18 years ago
  63. 7b1da51 Fixed a segfault when ctypes.wintypes were imported on non-Windows machines. by Thomas Heller · 18 years ago
  64. dda068d Fix bug #1518190: accept any integer or long value in the by Thomas Heller · 18 years ago
  65. 70e8e87 preparing for 2.5b2 by Anthony Baxter · 18 years ago
  66. 78ff1a1 Add svn:ignore. by Martin v. Löwis · 18 years ago
  67. d24d5b3 Change error message to indicate that VS2003 is necessary to build extension modules, not the .NET SDK. by Martin v. Löwis · 18 years ago
  68. 8d65681 Introduce DISTUTILS_USE_SDK as a flag to determine whether the by Martin v. Löwis · 18 years ago
  69. 56640df Patch #1504046: Add documentation for xml.etree. by Neal Norwitz · 18 years ago
  70. 2a30cd0 Patch #1516912: improve Modules support for OpenVMS. by Neal Norwitz · 18 years ago
  71. 4a5fbda Part of SF patch #1484695. This removes dead code. The chksum was by Neal Norwitz · 18 years ago
  72. 8440483 Fix doco. Backport candidate. by Neal Norwitz · 18 years ago
  73. ed65755 Bug #1512814, Fix incorrect lineno's when code at module scope by Neal Norwitz · 18 years ago
  74. 28746ab On 64 bit systems, int literals that use less than 64 bits are now ints by Neal Norwitz · 18 years ago
  75. 6ec6ab0 Fix SF bug 1441486: bad unary minus folding in compiler. by Neil Schemenauer · 18 years ago
  76. 0e07b60 Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation. by Neil Schemenauer · 18 years ago
  77. 63597f1 Whitespace normalization. by Tim Peters · 18 years ago
  78. 9575fb2 Add an additional test for bug #1519018. by Georg Brandl · 18 years ago
  79. fb48afa Fix SF bug #1519018: 'as' is now validated properly in import statements by Neal Norwitz · 18 years ago
  80. b6b1752 Fix RFC number. by Georg Brandl · 18 years ago
  81. 84bc19a Restore rev 47014: by Neal Norwitz · 18 years ago
  82. 388a8c2 Properly generate logical file ids. Fixes #1515998. by Martin v. Löwis · 18 years ago
  83. b9aa7ea Test using all CJK encodings for the testcases which don't require by Hye-Shik Chang · 18 years ago
  84. 84392be Add a testcase for r47086 which fixed a bug in codec_getstreamcodec(). by Hye-Shik Chang · 18 years ago
  85. 653f23c Document the correct return type of PyLong_AsUnsignedLongLongMask. by Thomas Heller · 18 years ago
  86. beb572b ImportWarning is now silent by default by Andrew M. Kuchling · 18 years ago
  87. 2d79225 Add NEWS entries for the ImportWarning change and documentation update by Nick Coghlan · 18 years ago
  88. 2bfe3a9 Cover ImportWarning, PendingDeprecationWarning and simplefilter() in the warnings module docs by Nick Coghlan · 18 years ago
  89. b6983bb Ignore ImportWarning by default by Nick Coghlan · 18 years ago
  90. 94a98e4 Update the tutorial section on relative imports by Nick Coghlan · 18 years ago
  91. 56829d5 Revert the __module_name__ changes made in rev 47142. We'll revisit this in Python 2.6 by Nick Coghlan · 18 years ago
  92. bf84e54 added XMLParser alias for cElementTree compatibility by Fredrik Lundh · 18 years ago
  93. fc34f6c NEWS entry for r47267: fixing configure's zlib probing. by Thomas Wouters · 18 years ago
  94. f875264 This patch solves the problem Skip was seeing with zlib, this patch ensures that by Ronald Oussoren · 18 years ago
  95. b979b35 Document the changes in svn revision 47263, from patch #1517790. by Thomas Heller · 18 years ago
  96. f40aed9 Document the Struture and Union constructors. by Thomas Heller · 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. 2329b64 The test that calls a function with invalid arguments and catches the by Thomas Heller · 18 years ago
  99. 5953bac A couple of examples about how to attack the fact that _PyType_Lookup() by Armin Rigo · 18 years ago
  100. 43d9a58 Revert the change done in svn revision 47206: by Thomas Heller · 18 years ago