1. c762242 Include versionadded in (c)math.isfinite docs (thanks Ezio Melotti). Other minor doc cleanups. by Mark Dickinson · 14 years ago
  2. 68c5de6 assertEquals -> assertEqual by Mark Dickinson · 14 years ago
  3. b214e90 Issue #9137: Fix issue in MutableMapping.update, which incorrectly by Mark Dickinson · 14 years ago
  4. 226f544 Improve docstrings for isnan, isinf and isfinite. by Mark Dickinson · 14 years ago
  5. 25fcd39 Issue #8974: fix print calls in msgfmt.py. by Martin v. Löwis · 14 years ago
  6. 8e0c996 Issue #9165: Add math.isfinite and cmath.isfinite. by Mark Dickinson · 14 years ago
  7. 3e74289 test for set literals by Benjamin Peterson · 14 years ago
  8. 1ac745b Issue #7616: Fix copying of overlapping memoryview slices with the Intel by Antoine Pitrou · 14 years ago
  9. 349d558 #9223: link to Command class reference, and move Command interface docs nearer to class docs. by Georg Brandl · 14 years ago
  10. 05bfcc5 #7935: cross-reference to ast.literal_eval() from eval() docs. by Georg Brandl · 14 years ago
  11. 492f3fc Allow set literals in literal_eval(). by Georg Brandl · 14 years ago
  12. e40ee50 #9184: fix default value for "buffering" param of open(). by Georg Brandl · 14 years ago
  13. de41bf3 Fix typo. by Georg Brandl · 14 years ago
  14. 0104bcd #6774: explain shutdown() behavior varying with platform. by Georg Brandl · 14 years ago
  15. d395052 Fix for issue 9164 by Ronald Oussoren · 14 years ago
  16. 8a1c254 #3214 followup: add link to ABC entry. by Georg Brandl · 14 years ago
  17. 692b3f8 Silence makeindex. by Georg Brandl · 14 years ago
  18. aba088e Issue2007: Removing reference to MSIE Cookie handling by mechanize. Suggested by John J Lee. by Senthil Kumaran · 14 years ago
  19. 3b107f9 remove unneeded error check by Benjamin Peterson · 14 years ago
  20. 2ef1632 Stricter verification for file based url scheme and reliance on ftp protocol. by Senthil Kumaran · 14 years ago
  21. 0d62f5b ValueError is eventually what we want to move to, I suppose by Benjamin Peterson · 14 years ago
  22. 522c32a Add missing docs for re module 'purge' function. by R. David Murray · 14 years ago
  23. c653ce3 Fix error message for comparing single line strings in unittest.TestCase.assertEqual. by Michael Foord · 14 years ago
  24. 0425a8e Fix 'refleak' introduced by fnmatch cache purge tests. by R. David Murray · 14 years ago
  25. a851483 #8564: update docs on integrating doctest/unittest with unittest(2) test discovery. by Georg Brandl · 14 years ago
  26. 1c616a5 #8456: fix signature of sqlite3.connect(). by Georg Brandl · 14 years ago
  27. 47d48bb #8338: fix outdated class name. by Georg Brandl · 14 years ago
  28. 297d972 #1434090: properly append child in expatbuilder doctype handler. by Georg Brandl · 14 years ago
  29. 73b1c7b #3214: improve description of duck-typing in glossary. by Georg Brandl · 14 years ago
  30. 0310a83 #3071: tell how many values were expected when unpacking too many. by Georg Brandl · 14 years ago
  31. 93eb42e Emphasize role of count for Pascal string. by Georg Brandl · 14 years ago
  32. b382337 Fix markup. by Georg Brandl · 14 years ago
  33. 61c061a Oops. Fix distutils tests that r82746 broke. by Jeffrey Yasskin · 14 years ago
  34. b669221 be more robust across platforms by Benjamin Peterson · 14 years ago
  35. 10de93a Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function). by Mark Dickinson · 14 years ago
  36. 34d17de remove SocketIO.__del__; close() can handle it by Benjamin Peterson · 14 years ago
  37. d4fcdb1 Issue #9189: Allow users to set $CFLAGS, $CPPFLAGS, and $LDFLAGS when running by Jeffrey Yasskin · 14 years ago
  38. 74e4561 Re-flow several long lines from #1578269. by Brian Curtin · 14 years ago
  39. c739569 Adding versionchanged to the various Windows os.symlink additions, along by Brian Curtin · 14 years ago
  40. 16633fa Fix the breakage of Lib/tarfile.py on non-Windows platforms due to by Brian Curtin · 14 years ago
  41. 4b83af9 wrap by Benjamin Peterson · 14 years ago
  42. a04a32d allow more exceptions by Benjamin Peterson · 14 years ago
  43. c2f583a Reorder Jason "two O's" Coombs by Brian Curtin · 14 years ago
  44. ccbcf53 OverflowError is fine by Benjamin Peterson · 14 years ago
  45. 893766c Fix sort order mistake in Misc/ACKS. by R. David Murray · 14 years ago
  46. ea340a3 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries. by R. David Murray · 14 years ago
  47. facb0e9 2.7 is now stable. by Georg Brandl · 14 years ago
  48. 8b0ef21 use assert method by Benjamin Peterson · 14 years ago
  49. d02441e fix repr of complicated structseqs #9206 by Benjamin Peterson · 14 years ago
  50. 8c567c5 assert tuple inheritance by Benjamin Peterson · 14 years ago
  51. 808e1ad Undo inadvertant checkin. by Brian Curtin · 14 years ago
  52. d40e6f7 Implement #1578269. Patch by Jason R. Coombs. by Brian Curtin · 14 years ago
  53. 0dd8f78 Issue #9136: Profiling Decimal gave 'dictionary changed size during iteration'. by Mark Dickinson · 14 years ago
  54. e42f1bb Fix misplaced exactness check that was causing unnecessary work in Decimal.__pow__. by Mark Dickinson · 14 years ago
  55. a123631 Fix a performance issue in Decimal.pow. Thanks Stefan Krah for finding this. by Mark Dickinson · 14 years ago
  56. f48ea7c Issue #8605: Skip test_gdb if Python is compiled with optimizations. by Antoine Pitrou · 14 years ago
  57. 247900c In test_decimal, convert heuristic for skipping tests into an explicit skiplist. by Mark Dickinson · 14 years ago
  58. 9527afd Fix typo in a comment in mathmodule.c. by Ezio Melotti · 14 years ago
  59. 73ca440 Issue #5288: Eliminated round-trips between timdelta and int offsets by Alexander Belopolsky · 14 years ago
  60. 6ef08a0 ValueError in this case is also acceptable by Benjamin Peterson · 14 years ago
  61. ccabcd4 make struct sequences subclass tuple; kill lots of code by Benjamin Peterson · 14 years ago
  62. a9800a8 add NEWS by Benjamin Peterson · 14 years ago
  63. b913784 Turn more notes into comments. by Georg Brandl · 14 years ago
  64. de73c45 don't ignore exceptions from PyObject_IsTrue by Benjamin Peterson · 14 years ago
  65. e789016 Make comment out of an awkward note. by Georg Brandl · 14 years ago
  66. c937dc2 this needn't be in the loop by Benjamin Peterson · 14 years ago
  67. be64d95 Issue #9186: log1p(-1.0) should raise ValueError, not OverflowError. by Mark Dickinson · 14 years ago
  68. 9c91eb8 Minor refactoring in lgamma code, for clarity. by Mark Dickinson · 14 years ago
  69. 7e4a6eb Kill gratuitous space. by Mark Dickinson · 14 years ago
  70. a11d8c0 Issue #9000: datetime.timezone objects now have eval-friendly repr. by Alexander Belopolsky · 14 years ago
  71. 44afa5e Fix typo. by Georg Brandl · 14 years ago
  72. 21a1f73 Style nit. by Mark Dickinson · 14 years ago
  73. c15dfd6 Minor improvements to logging documentation. by Vinay Sajip · 14 years ago
  74. 6f493b7 Indentation and PEP 7 fixes. by Mark Dickinson · 14 years ago
  75. d885e95 - sysmodule.c (get_hash_info): Define as static function. by Matthias Klose · 14 years ago
  76. 37c63a3 Change 'lowered' to 'lowercased' by Senthil Kumaran · 14 years ago
  77. c84dc9d Fix test_xmlrpc_net to no longer fail since there are no more buildbots for trunk. by Brett Cannon · 14 years ago
  78. 31c2740 "Modernized" the demo a little. by Alexander Belopolsky · 14 years ago
  79. 1f1ccc0 #9158: Fix y* format of PyArg_Parse*() functions documentation by Victor Stinner · 14 years ago
  80. 6c3bcb7 Post-detabification cleanup. by Mark Dickinson · 14 years ago
  81. 5ada7c7 Update Vec class constructor, remove indirection via function, use operator module. by Georg Brandl · 14 years ago
  82. dc00a2a Remove Dbm. by Georg Brandl · 14 years ago
  83. aefc1c7 untabify by Benjamin Peterson · 14 years ago
  84. d87e932 Added two more test cases for datetime by Alexander Belopolsky · 14 years ago
  85. b0f0991 #9166: NotImplemented is not an exception. by Georg Brandl · 14 years ago
  86. 97c694b looking up on the type is correct, so this isn't an XXX by Benjamin Peterson · 14 years ago
  87. f34e82e Added more tests for utctimetuple() by Alexander Belopolsky · 14 years ago
  88. a7465e2 cleanup basicsize logic #3268 by Benjamin Peterson · 14 years ago
  89. 335d2c7 pydoc still has a silly encoding by Benjamin Peterson · 14 years ago
  90. e51ee8a Fix the docstrings of the capitalize method. by Senthil Kumaran · 14 years ago
  91. fa89798 Fix: Issue9091 Minor documentation clarification. by Senthil Kumaran · 14 years ago
  92. 058173e Do some basic refactoring. Along the way also list what files had their by Brett Cannon · 14 years ago
  93. 5cca695 Add brief explanation; remove no-longer-working link by Andrew M. Kuchling · 14 years ago
  94. 45a26b9 Revert -r82559; it's not clear that this is the right thing to do, and the change obscures the original intentions. by Mark Dickinson · 14 years ago
  95. 30b570b Re-encode shlex.py in UTF-8, and remove coding cookie. by Mark Dickinson · 14 years ago
  96. b4a17a8 Remove coding cookie from heapq.py. by Mark Dickinson · 14 years ago
  97. 6a4e3c5 Make Demo/parser/test_parser.py run. by Mark Dickinson · 14 years ago
  98. feb3b75 Issue #9130: Validate ellipsis tokens in relative imports. by Mark Dickinson · 14 years ago
  99. 3445b48 Fix symbol numbers in test_parser test. by Mark Dickinson · 14 years ago
  100. 2cc8a5e Issue #9130: Fix validation of relative imports in parser module. by Mark Dickinson · 14 years ago