1. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
  2. c8e81ef Fix typo by Raymond Hettinger · 16 years ago
  3. e980d2d * Add implementation notes. by Raymond Hettinger · 16 years ago
  4. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 16 years ago
  5. a0b8d9a Silence a compiler warning. by Raymond Hettinger · 16 years ago
  6. 91852ca Issue 5381: Add object_pairs_hook to the json module. by Raymond Hettinger · 16 years ago
  7. 2124599 Improve implementation with better underlying data structure by Raymond Hettinger · 16 years ago
  8. fcfa7ea close files after comparing them by Benjamin Peterson · 16 years ago
  9. a61ae69 Use mixin methods where possible. (2.7 only -- these don't all exist in 3.0) by Raymond Hettinger · 16 years ago
  10. 06919a1 a much better example by Benjamin Peterson · 16 years ago
  11. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 16 years ago
  12. 7c33bd5 Attempt to fix Solaris buildbot failure on test_locale by Antoine Pitrou · 16 years ago
  13. 6b265f1 Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 16 years ago
  14. eb15863 Updated openssl support on VC6. (openssl-0.9.6g is old, cannot compile with _ssl.c) by Hirokazu Yamamoto · 16 years ago
  15. b14514a Fix bug in _insert_thousands_sep: too much zero padding could be by Mark Dickinson · 16 years ago
  16. d914e3f merge json library with simplejson 2.0.9 (issue 4136) by Bob Ippolito · 16 years ago
  17. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 16 years ago
  18. ed3558b I thought this was begging for an example by Benjamin Peterson · 16 years ago
  19. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 16 years ago
  20. 8cbe955 Add token markup. by Georg Brandl · 16 years ago
  21. bb7467f Added skip for old MSVC. by Hirokazu Yamamoto · 16 years ago
  22. fc9ea97 Move the previously local import of threading to module level. by Georg Brandl · 16 years ago
  23. 545a134 Fix markup in re docs and give a mail address in regex howto, so that by Georg Brandl · 16 years ago
  24. 173c1f1 #5469: add with statement to list of name-binding constructs. by Georg Brandl · 16 years ago
  25. 09827eb #5276: document IDLESTARTUP and .Idle.py. by Georg Brandl · 16 years ago
  26. 8db96b5 #5478: fix copy-paste oversight in function signature. by Georg Brandl · 16 years ago
  27. 44e5cd3 #5488: add missing struct member. by Georg Brandl · 16 years ago
  28. 5a95b21 #5491: clarify nested() semantics. by Georg Brandl · 16 years ago
  29. ed4cefb Fix a small nit in the error message if bool() falls back on __len__ and it returns the wrong type: it would tell the user that __nonzero__ should return bool or int. by Georg Brandl · 16 years ago
  30. 3259ef3 #5493: clarify __nonzero__ docs. by Georg Brandl · 16 years ago
  31. 4c95e09 #5496: fix docstring of lookup(). by Georg Brandl · 16 years ago
  32. 1706c64 fix tuple.index() error message #5495 by Benjamin Peterson · 16 years ago
  33. 8eba5ed Make marshalling errors a little more informative as to what went wrong by Nick Coghlan · 16 years ago
  34. 2ace4cf Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k. by Eric Smith · 16 years ago
  35. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 16 years ago
  36. feeafff Issue #1222: locale.format() bug when the thousands separator is a space character. by Antoine Pitrou · 16 years ago
  37. e83a4ad #5486: typos. by Georg Brandl · 16 years ago
  38. efa7c13 Issue 5477: Fix buglet in the itertools documentation. by Raymond Hettinger · 16 years ago
  39. 351de80 Add reference to solution for a commonly asked question. by Raymond Hettinger · 16 years ago
  40. 61585c2 Issue #5472: Fixed distutils.test_util tear down by Tarek Ziadé · 16 years ago
  41. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 16 years ago
  42. 8f19598 Fix typo. by Raymond Hettinger · 16 years ago
  43. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  44. bac769b Small optimization for corner case where maxlen==0. by Raymond Hettinger · 16 years ago
  45. ced6b1d Update the decimal FAQ for the from_float() classmethod and improve the recipe for remove_exponent() to make it cut and pasteable. by Raymond Hettinger · 16 years ago
  46. daeceb2 Add a version tag to the decimal module. by Raymond Hettinger · 16 years ago
  47. eecd1dc6 Clarify the meaning of normal and subnormal. by Raymond Hettinger · 16 years ago
  48. f345a21 Update url for the spec. by Raymond Hettinger · 16 years ago
  49. f4ea929 Fix markup. by Raymond Hettinger · 16 years ago
  50. 6d83429 gzip and bz2 are context managers by Benjamin Peterson · 16 years ago
  51. 38f1bf6 Add missing space. by Georg Brandl · 16 years ago
  52. 2cd82a8 #5458: add a note when we started to raise RuntimeErrors. by Georg Brandl · 16 years ago
  53. 9324ed8 Add cross-reference to the collections docs. by Raymond Hettinger · 16 years ago
  54. 3496a89 Add consume() recipe to itertools docs. by Raymond Hettinger · 16 years ago
  55. fed84c7 Issue 5443: Fix typo. by Raymond Hettinger · 16 years ago
  56. 629f9f2 Add Chris Withers. by Martin v. Löwis · 16 years ago
  57. 9c1f7b2 fix funky indentation by Benjamin Peterson · 16 years ago
  58. 15d5765 Fixed issue #2638: Show a window constructed with tkSimpleDialog.Dialog only by Guilherme Polo · 16 years ago
  59. 3768b2f Fixed issue #4792: Prevent a segfault in _tkinter by using the by Guilherme Polo · 16 years ago
  60. 6d6c1fd Fixed issue #5193: Guarantee that Tkinter.Text.search returns a string. by Guilherme Polo · 16 years ago
  61. 943b24e Issue #5394: removed > 2.3 syntax from distutils.msvc9compiler by Tarek Ziadé · 16 years ago
  62. ce15a65 Minor bsddb documentation glitch by Jesus Cea · 16 years ago
  63. 0903306 mmap.resize for anonymous map is not working yet, so changed to real file mapping... by Hirokazu Yamamoto · 16 years ago
  64. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
  65. a3e6c97 Fixed memory leak on failure. by Hirokazu Yamamoto · 16 years ago
  66. c51ec0a add example by Benjamin Peterson · 16 years ago
  67. 1ea7991 Fix for issue #1113328. by Ronald Oussoren · 16 years ago
  68. a97063a Fixes issues 3883 and 5194 by Ronald Oussoren · 16 years ago
  69. cea1ddb Change framework search order when looking for Tcl/Tk on OSX. by Ronald Oussoren · 16 years ago
  70. eeafb96 Fixed a typo. by Facundo Batista · 16 years ago
  71. 9ff3042 Fix for issue 5226. by Ronald Oussoren · 16 years ago
  72. 799868e Fix issue 5224. by Ronald Oussoren · 16 years ago
  73. d5ad6da Remove obsolete stuff from string module docs. by Georg Brandl · 16 years ago
  74. 4179377 Fix some more bugs caused by the backport from 3.x for importlib. by Brett Cannon · 16 years ago
  75. 131af65 Backport 70140, 70141, 70143, and 70144. by Raymond Hettinger · 16 years ago
  76. 288618e making the writing more formal by Benjamin Peterson · 16 years ago
  77. eacbbdf Issue #5179: Fixed subprocess handle leak on failure on windows. by Hirokazu Yamamoto · 16 years ago
  78. 8355155 Fixed memory leak. by Hirokazu Yamamoto · 16 years ago
  79. 0b15541 Minor simplification. by Raymond Hettinger · 16 years ago
  80. 9353ea2 Make the underlying data structure more private. by Raymond Hettinger · 16 years ago
  81. f17f81d Beef-up tests. by Raymond Hettinger · 16 years ago
  82. a07038d Fix markup. by Raymond Hettinger · 16 years ago
  83. e89b8e9 Backport 70111: Let configparser use ordered dicts by default. by Raymond Hettinger · 16 years ago
  84. 88a9164 Backport 70106: Add OrderedDict support to collections.namedtuple(). by Raymond Hettinger · 16 years ago
  85. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  86. 7705d0a Fix SHA_new and MD5_new, that would crash if not given initial data by Kristján Valur Jónsson · 16 years ago
  87. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 16 years ago
  88. ce45a96 removing the force-optimized option as discussed in #1533164 by Tarek Ziadé · 16 years ago
  89. ae91d09 Adds an optional flags argument to re.split, re.sub and re.subn to be by Gregory P. Smith · 16 years ago
  90. 0261e5d The note about caching of regular expression objects was incorrect ReST and by Gregory P. Smith · 16 years ago
  91. ad58b7c fix a silly problem of caching gone wrong #5401 by Benjamin Peterson · 16 years ago
  92. 3bac8b2 Fix docs for ConfigParser. by Raymond Hettinger · 16 years ago
  93. bcf7bf3 Fix 3k-style metaclass syntax in docstrings. by Georg Brandl · 16 years ago
  94. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  95. de28d68 Issue #5393: typo in cmath.cos and cmath.cosh docstring by Mark Dickinson · 16 years ago
  96. 02172dd Binary flag is needed on windows. by Hirokazu Yamamoto · 16 years ago
  97. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
  98. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
  99. 7334735 Issues #1533164 and #5378: Added quiet and force-optimize options to Distutils bdist_rpm command by Tarek Ziadé · 16 years ago
  100. 5c189b1 #5365: add quick look conversion table for different time representations. by Georg Brandl · 16 years ago