1. 76162e3 Clarify the behavior of any() and all() with an empty iterable. by Raymond Hettinger · 15 years ago
  2. 7203081 Less red ink (warning->note) and add link to def of side-by-side assembly. by R. David Murray · 15 years ago
  3. 6076d39 Fix for issue3440: add warning to subprocess discussion of by R. David Murray · 15 years ago
  4. 5c99148 tupel -> tuple by Benjamin Peterson · 15 years ago
  5. b48327a #5745: more linking for identifiers in email docs. by Georg Brandl · 15 years ago
  6. 4585746 Fixed another typos. (email.Utils => email.utils) by Hirokazu Yamamoto · 15 years ago
  7. 3bd4058 Fixed typo. (email.Utils => email.utils) by Hirokazu Yamamoto · 15 years ago
  8. a9feadc fix missing quote by Benjamin Peterson · 15 years ago
  9. 7bedd62 fix extra parenthesis #5774 by Benjamin Peterson · 15 years ago
  10. cd2e704 Issue 5354: Provide a standardised testing mechanism for doing fresh imports of modules, including the ability to block extension modules in order to test the pure Python fallbacks by Nick Coghlan · 15 years ago
  11. f0f475d Add examples. by Raymond Hettinger · 15 years ago
  12. c4f4697 Fix the count of datatypes. by Raymond Hettinger · 15 years ago
  13. f368fbc Clarify the table entries for combinatorics. by Raymond Hettinger · 15 years ago
  14. c473c5a Add note on using keyword arguments with OrderedDict. by Raymond Hettinger · 15 years ago
  15. 5963185 Typo fixes by Andrew M. Kuchling · 15 years ago
  16. f2dfef1 Adding assertIs and assertIsNot methods to unittest.TestCase by Michael Foord · 15 years ago
  17. a7ec072 #5370: doc update about unpickling objects with custom __getattr__ etc. methods. by Georg Brandl · 15 years ago
  18. 5d19610 #1718017: document the relation of os.path and the posixpath, ntpath etc. modules better. by Georg Brandl · 15 years ago
  19. 75f1107 Avoid sure signs of a diseased mind. by Georg Brandl · 15 years ago
  20. 89b1296 Normalize spelling of Mac OS X. by Georg Brandl · 15 years ago
  21. 9af0c56 #1742837: expand HTTP server docs, and fix SocketServer ones to document methods as methods, not functions. by Georg Brandl · 15 years ago
  22. f9c8193 note how using iter* are unsafe while mutating and document iter(dict) by Benjamin Peterson · 15 years ago
  23. 29b3630 #5601: clarify that webbrowser is not meant for file names. by Georg Brandl · 15 years ago
  24. 9d977b8 #5642: clarify map() compatibility to the builtin. by Georg Brandl · 15 years ago
  25. 195374e Fix error in description of 'oct' (issue 5678). by R. David Murray · 15 years ago
  26. 64906bb Add helpful link. by Raymond Hettinger · 15 years ago
  27. 353a85f Clarified warning about logging use from asynchronous signal handlers. by Vinay Sajip · 15 years ago
  28. a178a69 Fix 'the the' duplication by Andrew M. Kuchling · 15 years ago
  29. b0b1aa2 Added warning about logging use from asynchronous signal handlers. by Vinay Sajip · 15 years ago
  30. 6df48a3 Update docs for namedtuple's renaming change. by Raymond Hettinger · 15 years ago
  31. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  32. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 15 years ago
  33. d56bab4 Clarify that datetime strftime does not produce leap seconds and datetime by R. David Murray · 15 years ago
  34. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 15 years ago
  35. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 15 years ago
  36. e9d35ef Typo fix by Andrew M. Kuchling · 15 years ago
  37. 88ed8f2 #4572: add SEEK_* values as constants in io.py. by Georg Brandl · 15 years ago
  38. fff2f4b Add link to an alternative generator with a long-period. by Raymond Hettinger · 15 years ago
  39. b12e79d Issue 3270: document Listener address restrictions on windows by Jesse Noller · 15 years ago
  40. 02cb0eb Fix multiprocessing.event to match the new threading.Event API by Jesse Noller · 15 years ago
  41. bb94d43 Fix for failing asyncore tests. by Josiah Carlson · 15 years ago
  42. 6bc94cb Improve examples for collections.deque() by Raymond Hettinger · 15 years ago
  43. b771586 #3427: document correct return type for urlopen().info(). by Georg Brandl · 15 years ago
  44. a08e8de #5598: document DocFileSuite *args argument. by Georg Brandl · 15 years ago
  45. ef660e8 #1674032: return value of flag from Event.wait(). OKed by Guido. by Georg Brandl · 15 years ago
  46. 65ff005 Issue an actual PendingDeprecationWarning for the TestCase.fail* methods. by Gregory P. Smith · 15 years ago
  47. 956ed97 #4411: document mro() and __mro__. (I hope I got it right.) by Georg Brandl · 15 years ago
  48. b48adec #1096310: document usage of sys.__std*__ a bit better. by Georg Brandl · 15 years ago
  49. 5206086 #4882: document named group behavior a bit better. by Georg Brandl · 15 years ago
  50. 22717df #837577: note cryptic return value of spawn*e on invalid env dicts. by Georg Brandl · 15 years ago
  51. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 15 years ago
  52. b945bbf #1386675: specify WindowsError as the exception, because it has a winerror attribute that EnvironmentError doesnt have. by Georg Brandl · 15 years ago
  53. 624f337 #5529: backport new docs of import semantics written by Brett to 2.x. by Georg Brandl · 15 years ago
  54. 21b60af #5581: fget argument of abstractproperty is optional as well. by Georg Brandl · 15 years ago
  55. 382edff #5519: remove reference to Kodos, which seems dead. by Georg Brandl · 15 years ago
  56. efa9771 typo fix by Andrew M. Kuchling · 15 years ago
  57. dbf95a3 A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht), by Barry Warsaw · 15 years ago
  58. 55acfc6 Many edits by Andrew M. Kuchling · 15 years ago
  59. 1967200 Typo fixes by Andrew M. Kuchling · 15 years ago
  60. d59efbc #5199: make warning about vars() assignment more visible. by Georg Brandl · 15 years ago
  61. 008af85 Fix for issue 13095 by Ronald Oussoren · 15 years ago
  62. 8ba6f3b Fix for issue 896199 (some Carbon modules aren't present in the documentation) by Ronald Oussoren · 15 years ago
  63. ac0580e there's actually three methods here #5600 by Benjamin Peterson · 15 years ago
  64. 2e648ec Issue #532631: Replace confusing fabs(x)/1e25 >= 1e25 test by Mark Dickinson · 15 years ago
  65. 097aafd fix consistency by Benjamin Peterson · 15 years ago
  66. 7233acc stop the versionchanged directive from hiding the docs by Benjamin Peterson · 15 years ago
  67. be76d4c a more realistic example by Benjamin Peterson · 15 years ago
  68. a0eea59 Add section numbering to some of the larger subdocuments. by Georg Brandl · 15 years ago
  69. 0e92858 give os.symlink and os.link() better parameter names #5564 by Benjamin Peterson · 15 years ago
  70. a31aa45 #5324: document __subclasses__(). by Georg Brandl · 15 years ago
  71. 47d9738 rename TestCase.skip() to skipTest() because it causes annoying problems with trial #5571 by Benjamin Peterson · 15 years ago
  72. 9a1337b clarify the type of data returned by Skip Montanaro · 15 years ago
  73. 21b617b Add links to related resources. by Raymond Hettinger · 15 years ago
  74. 31b7806 forgot to document that setUp can be skipped (silly me...) by Benjamin Peterson · 15 years ago
  75. 99721e0 refactor unittest docs by Benjamin Peterson · 15 years ago
  76. cb2b0e4 comply with the evilJavaNamingScheme for attribute names by Benjamin Peterson · 15 years ago
  77. 692428e implement test skipping and expected failures by Benjamin Peterson · 15 years ago
  78. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 15 years ago
  79. 2cef1a5 Add MutableSet example. by Raymond Hettinger · 15 years ago
  80. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 15 years ago
  81. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 15 years ago
  82. 91852ca Issue 5381: Add object_pairs_hook to the json module. by Raymond Hettinger · 15 years ago
  83. 06919a1 a much better example by Benjamin Peterson · 15 years ago
  84. ed3558b I thought this was begging for an example by Benjamin Peterson · 15 years ago
  85. 8cbe955 Add token markup. by Georg Brandl · 15 years ago
  86. 545a134 Fix markup in re docs and give a mail address in regex howto, so that by Georg Brandl · 15 years ago
  87. 09827eb #5276: document IDLESTARTUP and .Idle.py. by Georg Brandl · 15 years ago
  88. 8db96b5 #5478: fix copy-paste oversight in function signature. by Georg Brandl · 15 years ago
  89. 5a95b21 #5491: clarify nested() semantics. by Georg Brandl · 15 years ago
  90. e83a4ad #5486: typos. by Georg Brandl · 15 years ago
  91. efa7c13 Issue 5477: Fix buglet in the itertools documentation. by Raymond Hettinger · 16 years ago
  92. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 16 years ago
  93. 8f19598 Fix typo. by Raymond Hettinger · 16 years ago
  94. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  95. 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
  96. eecd1dc6 Clarify the meaning of normal and subnormal. by Raymond Hettinger · 16 years ago
  97. f345a21 Update url for the spec. by Raymond Hettinger · 16 years ago
  98. f4ea929 Fix markup. by Raymond Hettinger · 16 years ago
  99. 6d83429 gzip and bz2 are context managers by Benjamin Peterson · 16 years ago
  100. 38f1bf6 Add missing space. by Georg Brandl · 16 years ago