1. 3dabc10 sys.setdefaultencoding() strikes me as a bad example by Benjamin Peterson · 16 years ago
  2. d8282ee Fix name. by Georg Brandl · 16 years ago
  3. 7523234 Fixed wording for formatting integers: precision is not allowed. by Eric Smith · 16 years ago
  4. dd26681 Revert inappropriate doc change. by R. David Murray · 16 years ago
  5. e202700 Document how to pass a 'decode' argument to get_payload when by R. David Murray · 16 years ago
  6. 4d4313d #5142: add module skipping feature to pdb. by Georg Brandl · 16 years ago
  7. e3a3726 #5916, 5917: small socket doc improvements. by Georg Brandl · 16 years ago
  8. f5f045e #5927, 5928: typos. by Georg Brandl · 16 years ago
  9. d02eeda Issue #4751: For hashlib algorithms provided by OpenSSL, the Python by Gregory P. Smith · 16 years ago
  10. 07ef487 by Michael Foord · 16 years ago
  11. 2b42c29 add myself by Benjamin Peterson · 16 years ago
  12. e2fb98f Add addCleanup and doCleanups to unittest.TestCase. by Michael Foord · 16 years ago
  13. 829f6b8 Adds an exit parameter to unittest.main(). If False main no longer by Michael Foord · 16 years ago
  14. 24cc78a Fix directive name. by Georg Brandl · 16 years ago
  15. b64b827 Review ipaddr docs and add them in the TOC under "Internet protocols". by Georg Brandl · 16 years ago
  16. 1d49926 Adds the ipaddr module to the standard library. Issue #3959. by Gregory P. Smith · 16 years ago
  17. 6733bed Make test.test_support.EnvironmentVarGuard behave like a dictionary. by Walter Dörwald · 16 years ago
  18. b01c6e5 Make the turtle.rst doctests pass. I have a feeling there should be by R. David Murray · 16 years ago
  19. f6dab95 Make the doctests in the docs pass, except for those in the turtle module. by Georg Brandl · 16 years ago
  20. 3b23c9c Remove spurious 'u'. by R. David Murray · 16 years ago
  21. 636b23a Various small fixups to the multiprocessing docs, mostly fixing and by R. David Murray · 16 years ago
  22. 8b8f8cc Add example to the seealso section. by Raymond Hettinger · 16 years ago
  23. ec047e0 Make sys.xxx variable references into links, note that print_last only by R. David Murray · 16 years ago
  24. 9bc6682 #5848: small unittest doc patch. by Georg Brandl · 16 years ago
  25. b44c9f3 Demote warnings to notices, part 2: stuff that is 2.x-only. by Georg Brandl · 16 years ago
  26. 16a57f6 Demote warnings to notices where appropriate, following the goal that as few "red box" warnings by Georg Brandl · 16 years ago
  27. e1b79ce #5856: fix typo s in traceback example. by Georg Brandl · 16 years ago
  28. 208b00d #5841: add deprecation py3k warning and notice in the docs for commands module. by Georg Brandl · 16 years ago
  29. cf5608d #5821: add some capabilities of TarFile's file-like object. by Georg Brandl · 16 years ago
  30. 64034bb #5834: use "failure" instead of "error" because the two have different meanings in unittest context. by Georg Brandl · 16 years ago
  31. 69923a1 #5813: add a reference to the "future statements" section. by Georg Brandl · 16 years ago
  32. 95089bc Fix rewrapping accident. by Georg Brandl · 16 years ago
  33. 49cc4ea #5820: fix bug in usage of getreader(). by Georg Brandl · 16 years ago
  34. 8100bd8 Issue #5812: make Fraction('1e-6') valid. Backport of r71806. by Mark Dickinson · 16 years ago
  35. 5533ff6 Issue 5354: Change API for import_fresh_module() to better support test_warnings use case (also fixes some bugs in the original implementation) by Nick Coghlan · 16 years ago
  36. 4c07438 Documentation for issue 5237, auto-numbered format fields. Contributed by Terry J. Reedy. by Eric Smith · 16 years ago
  37. e561011 #5751: fix escaping of \\n. by Georg Brandl · 16 years ago
  38. ce54356 #5757: fix copy-paste error in notify(). by Georg Brandl · 16 years ago
  39. cccfc82 Fix typo by Raymond Hettinger · 16 years ago
  40. 76162e3 Clarify the behavior of any() and all() with an empty iterable. by Raymond Hettinger · 16 years ago
  41. 7203081 Less red ink (warning->note) and add link to def of side-by-side assembly. by R. David Murray · 16 years ago
  42. 6076d39 Fix for issue3440: add warning to subprocess discussion of by R. David Murray · 16 years ago
  43. 5c99148 tupel -> tuple by Benjamin Peterson · 16 years ago
  44. b48327a #5745: more linking for identifiers in email docs. by Georg Brandl · 16 years ago
  45. 4585746 Fixed another typos. (email.Utils => email.utils) by Hirokazu Yamamoto · 16 years ago
  46. 3bd4058 Fixed typo. (email.Utils => email.utils) by Hirokazu Yamamoto · 16 years ago
  47. a9feadc fix missing quote by Benjamin Peterson · 16 years ago
  48. 7bedd62 fix extra parenthesis #5774 by Benjamin Peterson · 16 years ago
  49. 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 · 16 years ago
  50. f0f475d Add examples. by Raymond Hettinger · 16 years ago
  51. c4f4697 Fix the count of datatypes. by Raymond Hettinger · 16 years ago
  52. f368fbc Clarify the table entries for combinatorics. by Raymond Hettinger · 16 years ago
  53. c473c5a Add note on using keyword arguments with OrderedDict. by Raymond Hettinger · 16 years ago
  54. 5963185 Typo fixes by Andrew M. Kuchling · 16 years ago
  55. f2dfef1 Adding assertIs and assertIsNot methods to unittest.TestCase by Michael Foord · 16 years ago
  56. a7ec072 #5370: doc update about unpickling objects with custom __getattr__ etc. methods. by Georg Brandl · 16 years ago
  57. 5d19610 #1718017: document the relation of os.path and the posixpath, ntpath etc. modules better. by Georg Brandl · 16 years ago
  58. 75f1107 Avoid sure signs of a diseased mind. by Georg Brandl · 16 years ago
  59. 89b1296 Normalize spelling of Mac OS X. by Georg Brandl · 16 years ago
  60. 9af0c56 #1742837: expand HTTP server docs, and fix SocketServer ones to document methods as methods, not functions. by Georg Brandl · 16 years ago
  61. f9c8193 note how using iter* are unsafe while mutating and document iter(dict) by Benjamin Peterson · 16 years ago
  62. 29b3630 #5601: clarify that webbrowser is not meant for file names. by Georg Brandl · 16 years ago
  63. 9d977b8 #5642: clarify map() compatibility to the builtin. by Georg Brandl · 16 years ago
  64. 195374e Fix error in description of 'oct' (issue 5678). by R. David Murray · 16 years ago
  65. 64906bb Add helpful link. by Raymond Hettinger · 16 years ago
  66. 353a85f Clarified warning about logging use from asynchronous signal handlers. by Vinay Sajip · 16 years ago
  67. a178a69 Fix 'the the' duplication by Andrew M. Kuchling · 16 years ago
  68. b0b1aa2 Added warning about logging use from asynchronous signal handlers. by Vinay Sajip · 16 years ago
  69. 6df48a3 Update docs for namedtuple's renaming change. by Raymond Hettinger · 16 years ago
  70. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 16 years ago
  71. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 16 years ago
  72. d56bab4 Clarify that datetime strftime does not produce leap seconds and datetime by R. David Murray · 16 years ago
  73. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 16 years ago
  74. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 16 years ago
  75. e9d35ef Typo fix by Andrew M. Kuchling · 16 years ago
  76. 88ed8f2 #4572: add SEEK_* values as constants in io.py. by Georg Brandl · 16 years ago
  77. fff2f4b Add link to an alternative generator with a long-period. by Raymond Hettinger · 16 years ago
  78. b12e79d Issue 3270: document Listener address restrictions on windows by Jesse Noller · 16 years ago
  79. 02cb0eb Fix multiprocessing.event to match the new threading.Event API by Jesse Noller · 16 years ago
  80. bb94d43 Fix for failing asyncore tests. by Josiah Carlson · 16 years ago
  81. 6bc94cb Improve examples for collections.deque() by Raymond Hettinger · 16 years ago
  82. b771586 #3427: document correct return type for urlopen().info(). by Georg Brandl · 16 years ago
  83. a08e8de #5598: document DocFileSuite *args argument. by Georg Brandl · 16 years ago
  84. ef660e8 #1674032: return value of flag from Event.wait(). OKed by Guido. by Georg Brandl · 16 years ago
  85. 65ff005 Issue an actual PendingDeprecationWarning for the TestCase.fail* methods. by Gregory P. Smith · 16 years ago
  86. 956ed97 #4411: document mro() and __mro__. (I hope I got it right.) by Georg Brandl · 16 years ago
  87. b48adec #1096310: document usage of sys.__std*__ a bit better. by Georg Brandl · 16 years ago
  88. 5206086 #4882: document named group behavior a bit better. by Georg Brandl · 16 years ago
  89. 22717df #837577: note cryptic return value of spawn*e on invalid env dicts. by Georg Brandl · 16 years ago
  90. 2839985 The unittest.TestCase.assertEqual() now displays the differences in lists, by Gregory P. Smith · 16 years ago
  91. b945bbf #1386675: specify WindowsError as the exception, because it has a winerror attribute that EnvironmentError doesnt have. by Georg Brandl · 16 years ago
  92. 624f337 #5529: backport new docs of import semantics written by Brett to 2.x. by Georg Brandl · 16 years ago
  93. 21b60af #5581: fget argument of abstractproperty is optional as well. by Georg Brandl · 16 years ago
  94. 382edff #5519: remove reference to Kodos, which seems dead. by Georg Brandl · 16 years ago
  95. efa9771 typo fix by Andrew M. Kuchling · 16 years ago
  96. dbf95a3 A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht), by Barry Warsaw · 16 years ago
  97. 55acfc6 Many edits by Andrew M. Kuchling · 16 years ago
  98. 1967200 Typo fixes by Andrew M. Kuchling · 16 years ago
  99. d59efbc #5199: make warning about vars() assignment more visible. by Georg Brandl · 16 years ago
  100. 008af85 Fix for issue 13095 by Ronald Oussoren · 16 years ago