1. 050afbf Improve error messages by Raymond Hettinger · 17 years ago
  2. 9fc1b96 Change a PyErr_Print() into a PyErr_Clear(), per discussion in issue 1031213. by Guido van Rossum · 17 years ago
  3. ec56019 test_bigbits was not testing what it seemed to. by Armin Rigo · 17 years ago
  4. d29f1d2 Use unittest for assertions by Neal Norwitz · 17 years ago
  5. 3884690 Don't raise a string exception, they don't work anymore. by Neal Norwitz · 17 years ago
  6. 880605a Let the O/S supply a port if none of the default ports can be used. by Neal Norwitz · 17 years ago
  7. 5d743fd Fix an uncollectable reference leak in bsddb.db.DBShelf.append by Gregory P. Smith · 17 years ago
  8. 5fbf663 Fix email example. by Georg Brandl · 17 years ago
  9. d40f126 Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append by Gregory P. Smith · 17 years ago
  10. 3a0de08 Fix test of count.__repr__() to ignore the 'L' if the count is a long by Raymond Hettinger · 17 years ago
  11. d476a40 Bug #1216: Restore support for Visual Studio 2002. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  12. f3ca169 Get this module to compile with bsddb versions prior to 4.3 by Neal Norwitz · 17 years ago
  13. 15f2661 Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory by Neal Norwitz · 17 years ago
  14. a7d329a Fix Coverity 180: Don't overallocate. We don't need structs, but pointers. by Neal Norwitz · 17 years ago
  15. e545ff3 Fix Coverity 168: Close the file before returning (exiting). by Neal Norwitz · 17 years ago
  16. 088beae Get rid of compiler warning about retval being used (returned) without by Neal Norwitz · 17 years ago
  17. c740d83 Get rid of warnings on a bunch of platforms by using a proper prototype. by Neal Norwitz · 17 years ago
  18. e77d103 Get rid of warning about not being able to create an existing directory. by Neal Norwitz · 17 years ago
  19. 7fee6dd On OS X, use os.uname() instead of gestalt.sysv(...) to get the by Thomas Heller · 17 years ago
  20. 631fee6 show paste if > 80 columns. Patch 1659326 Tal Einat. by Kurt B. Kaiser · 17 years ago
  21. cca976b Allow cursor color change w/o restart. Patch 1725576 Tal Einat. by Kurt B. Kaiser · 17 years ago
  22. 6899586 Accept Jim Jewett's api suggestion to use None instead of -1 to indicate unbounded deques. by Raymond Hettinger · 17 years ago
  23. 77ae87c Remove file-level typedefs that were inconsistently used throughout the file. by Brett Cannon · 17 years ago
  24. c8f65e6 Allow interrupt only when executing user code in subprocess by Kurt B. Kaiser · 17 years ago
  25. e7f4d84 remove another sleepycat reference by Gregory P. Smith · 17 years ago
  26. b7de61b Use the highest cPickle protocol in bsddb.dbshelve. This comes from by Gregory P. Smith · 17 years ago
  27. 10bed54 Fix a double free when positioning a database cursor to a non-existant by Gregory P. Smith · 17 years ago
  28. 3925053 Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API by Gregory P. Smith · 17 years ago
  29. 163f622 Make the error messages more specific by Raymond Hettinger · 17 years ago
  30. 4b3074c Eliminate camelcase function name by Andrew M. Kuchling · 17 years ago
  31. a48a299 Eliminate camelcase function name by Raymond Hettinger · 17 years ago
  32. 814b046 #1199: docs for tp_as_{number,sequence,mapping}, by Amaury Forgeot d'Arc. by Georg Brandl · 17 years ago
  33. 0e1d606 Better variable names by Raymond Hettinger · 17 years ago
  34. b6893f2 Missed a line in the docs by Raymond Hettinger · 17 years ago
  35. 2115bbc Add comments to NamedTuple code. by Raymond Hettinger · 17 years ago
  36. a970c22 Update docstring of sched, also remove an unused assignment. by Georg Brandl · 17 years ago
  37. 16fd6c4 #1123: fix the docs for the str.split(None, sep) case. by Georg Brandl · 17 years ago
  38. 92abad2 Ensure that this test will pass even if another test left an unwritable TESTFN. by Neal Norwitz · 17 years ago
  39. 71e4fb5 Use the host the author likely meant in the first place. pop.gmail.com is by Gregory P. Smith · 17 years ago
  40. 1475cd8 Allows BerkeleyDB 4.6.x >= 4.6.21 for the bsddb module. by Gregory P. Smith · 17 years ago
  41. e70be5c Stab in the dark attempt to fix the test_bsddb3 failure on sparc and S-390 by Gregory P. Smith · 17 years ago
  42. 556b43d Restore BEGIN/END THREADS macros which were squashed in the previous checkin by Raymond Hettinger · 17 years ago
  43. 44f326e Add a note about fixing some more warnings found by Coverity. by Neal Norwitz · 17 years ago
  44. 5a29dd3 Fix Coverity #159. by Neal Norwitz · 17 years ago
  45. 3adac21 Fix Coverity #158: Check the correct variable. by Neal Norwitz · 17 years ago
  46. c47cf7d dict could be NULL, so we need to XDECREF. by Neal Norwitz · 17 years ago
  47. 06f8067 move descriptions of ac_(in|out)_buffer_size to the right place by Fred Drake · 17 years ago
  48. a7fc4b1 Add __asdict__() to NamedTuple and refine the docs. by Raymond Hettinger · 17 years ago
  49. c9b7163 wrap lines to <80 characters before fixing errors by Fred Drake · 17 years ago
  50. 6ba1a5f Coverity #151: Remove deadcode. by Neal Norwitz · 17 years ago
  51. e3fde8f configDialog cleanup. Patch 1730217 Tal Einat. by Kurt B. Kaiser · 17 years ago
  52. d5f4910 textView cleanup. Patch 1718043 Tal Einat. by Kurt B. Kaiser · 17 years ago
  53. 0b634ef Clean up EditorWindow close. by Kurt B. Kaiser · 17 years ago
  54. 85897c9 Remove unused theme that was causing a fault in p3k. by Kurt B. Kaiser · 17 years ago
  55. 67bd62f Assume that the user knows when he wants to end the line; don't insert by Kurt B. Kaiser · 17 years ago
  56. 50e90e2 itertools.count() no longer limited to sys.maxint. by Raymond Hettinger · 17 years ago
  57. 8f66937 enumerate() is no longer bounded to using sequences shorter than LONG_MAX. The possibility of overflow was sending some newsgroup posters into a tizzy. by Raymond Hettinger · 17 years ago
  58. d92e871 Added note in footnote about string comparisons about unicodedata.normalize(). by Mark Summerfield · 17 years ago
  59. be6c7ba Added a class to store the digits of log(10), so that they can be made by Facundo Batista · 17 years ago
  60. 1a191df Made the various is_* operations return booleans. This was discussed by Facundo Batista · 17 years ago
  61. 31ba848 Fix error introduced by r58288; if a tuple is length 0 return its repr and by Brett Cannon · 17 years ago
  62. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 17 years ago
  63. c537881 Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time. by Vinay Sajip · 17 years ago
  64. 66ba9ff Minor date change. by Vinay Sajip · 17 years ago
  65. ba2e519 #1208: document match object's boolean value. by Georg Brandl · 17 years ago
  66. 90d9361 Change to basicConfig() to fix #1021. by Vinay Sajip · 17 years ago
  67. 4df367c Change to flush and close logic to fix #1760556. by Vinay Sajip · 17 years ago
  68. 99479eb Add various items by Andrew M. Kuchling · 17 years ago
  69. 6d407e4 Typo fix by Andrew M. Kuchling · 17 years ago
  70. 9c90635 Remove stray odd character; grammar fix by Andrew M. Kuchling · 17 years ago
  71. 9b91567 #1177: accept 2xx responses for https too, not only http. by Georg Brandl · 17 years ago
  72. e418625 #1196: document default radix for int(). by Georg Brandl · 17 years ago
  73. 97ca583 Fix typo and double word. by Georg Brandl · 17 years ago
  74. ad8fb0d Patch # 188 by Philip Jenvey. by Guido van Rossum · 17 years ago
  75. aaad0d6 Issue1704287: "make install" fails unless you do "make" first. Make by Sean Reifscheider · 17 years ago
  76. 4a21268 Patch #1181: add os.environ.clear() method. by Georg Brandl · 17 years ago
  77. e217602 Try harder to stay within the 79-column limit. There's still two places that go (way) over, but those are harder to fix without suffering in readability. by Thomas Wouters · 17 years ago
  78. efa7d51 #1176: document that string methods don't take keyword args. by Georg Brandl · 17 years ago
  79. aff85e2 Patch #1541463: optimize performance of cgi.FieldStorage operations. by Georg Brandl · 17 years ago
  80. 5d242ee alternate -> alternative. by Georg Brandl · 17 years ago
  81. 7268e9d Fit nits by Raymond Hettinger · 17 years ago
  82. 8c20244 Issue #1772851. Optimization of __hash__ to behave better for big big numbers. by Facundo Batista · 17 years ago
  83. ae406c6 Whitespace cleanup. by Thomas Wouters · 17 years ago
  84. b3e6e8c Fix obvious typo in threaded test. by Thomas Wouters · 17 years ago
  85. d544df7 Issue #1772851. Alters long.__hash__ from being *almost* completely by Facundo Batista · 17 years ago
  86. 673debf Annotated the correction to urllib.py, issue #1177 by Facundo Batista · 17 years ago
  87. a1afbf6 issue1177: Ported Facundo's from urllib2 to urllib, accepting 2xx responses. by Sean Reifscheider · 17 years ago
  88. 5a5bc7b Fix #1169: remove docstrings in functions for -OO. by Georg Brandl · 17 years ago
  89. 111c0ea issue1172: Documentation of "done" attribute in cgi module. by Sean Reifscheider · 17 years ago
  90. bbaff4c Properly indent two lines. (Spotted because it caused merge conflicts in the by Thomas Wouters · 17 years ago
  91. cbab594 Cleanup docs for NamedTuple. by Raymond Hettinger · 17 years ago
  92. cce8df2 Speed up of the various division operations (remainder, divide, by Facundo Batista · 17 years ago
  93. 745e48d A bit of reordering, also show more subheadings in the lang ref index. by Georg Brandl · 17 years ago
  94. 2b03d45 Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people can see how it works. by Raymond Hettinger · 17 years ago
  95. de37a8c Add item; sort properly by Andrew M. Kuchling · 17 years ago
  96. f09597c issue1082: Fixing platform and system for Vista. by Sean Reifscheider · 17 years ago
  97. 6c398da The methods always return Decimal classes, even if they're by Facundo Batista · 17 years ago
  98. b67da23 Decimal is updated, :) by Facundo Batista · 17 years ago
  99. 8335acb issue1597011: Fix for bz2 module corner-case error due to error checking bug. by Sean Reifscheider · 17 years ago
  100. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago