1. 5a22b65 Issue 9299 Add exist_ok parameter to os.makedirs to suppress 'File exists' exception. Patch by Ray Allen. by Terry Reedy · 14 years ago
  2. 3cdf871 Neaten-up random module docs. by Raymond Hettinger · 14 years ago
  3. 2fdc7b1 Add an example to the random docs. by Raymond Hettinger · 14 years ago
  4. c74d518 Fix markup by Raymond Hettinger · 14 years ago
  5. 507e3f8 With Raymond's approval added a paragraph describing Unicode 6.0.0 changes. Not reST formatted. by Alexander Belopolsky · 14 years ago
  6. 30c7362 Clean-up last update (missing comma, unnecessary spacing change, spurious backtick). by Raymond Hettinger · 14 years ago
  7. adb8146 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  8. 419e3de Fix some markup and style in the unittest docs. by Georg Brandl · 14 years ago
  9. f7f5a82 #10594: fix parameter names in PyList API docs. by Georg Brandl · 14 years ago
  10. 063f237 Add missing word, and add a better reference to the actual function. by Georg Brandl · 14 years ago
  11. 5ce0aa2 Add recipe to itertools doc. by Raymond Hettinger · 14 years ago
  12. c79fb0e Issue 10593: Adopt Nick's suggestion for an lru_cache with maxsize=None. by Raymond Hettinger · 14 years ago
  13. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  14. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago
  15. 00f2f97 Doc and docstring nits. by Raymond Hettinger · 14 years ago
  16. cc03858 Documentation nits. by Raymond Hettinger · 14 years ago
  17. 7496b41 Add example, tighten text, and minor clean-ups. by Raymond Hettinger · 14 years ago
  18. d01df46 Fix typo: "ofbytes" should be "of bytes" by Daniel Stutzbach · 14 years ago
  19. dcb4491 Add some internal links. by Raymond Hettinger · 14 years ago
  20. ff2a4ba Let’s keep “throw” for the generator method and use “raise” elsewhere. by Éric Araujo · 14 years ago
  21. 9fc443c Issue 9873: the URL parsing functions now accept ASCII encoded byte sequences in addition to character strings by Nick Coghlan · 14 years ago
  22. 5aa580f Fix typo. by Georg Brandl · 14 years ago
  23. 53afa6d Fix input type for zlib. by Georg Brandl · 14 years ago
  24. 8f358aa #10584: fix bad links. by Georg Brandl · 14 years ago
  25. 5e20bab Neaten-up a bit. by Raymond Hettinger · 14 years ago
  26. 234515a Issue 10586: change the new functools.lru_cache implementation to expose the maximum and current cache sizes through the public statistics API. This API is now a single function that returns a named tuple. by Nick Coghlan · 14 years ago
  27. 8175dae Fix heading style inconsistencies. by Georg Brandl · 14 years ago
  28. 51be98a Fix indentation bug. by Georg Brandl · 14 years ago
  29. 6f10704 Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number. by Senthil Kumaran · 14 years ago
  30. 40b8cf5 Do not add an obsolete unittest name to Py3.2. by Raymond Hettinger · 14 years ago
  31. 1de9115 Add callable() to the built-in functions table. by Ezio Melotti · 14 years ago
  32. f6861ae there's now a setup.py switch for this by Benjamin Peterson · 14 years ago
  33. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  34. dc9b17d Add version-added note twice for new difflib SequenceMatcher autojunk parameter. by Terry Reedy · 14 years ago
  35. a66e029 Make doc for PyErr_Format() up to date. by Antoine Pitrou · 14 years ago
  36. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  37. 76338ec Rewrap long lines + minor edits by Éric Araujo · 14 years ago
  38. 8acb67c Use link-generating markup (see #9312) by Éric Araujo · 14 years ago
  39. fe12390 Better example for os.system(): do not change the system time. by Georg Brandl · 14 years ago
  40. 326c57d Typo fix. by Georg Brandl · 14 years ago
  41. 62f52c4 Remove parenthetical remark that is confusing now that the module is not named "__builtin__" anymore. by Georg Brandl · 14 years ago
  42. f51a6c7 #10420: fix docs of bdb.effective(). by Georg Brandl · 14 years ago
  43. c877a7c Use PyLong_FromLong where appropriate. by Georg Brandl · 14 years ago
  44. 8449932 #10526: fix typo. by Georg Brandl · 14 years ago
  45. 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 14 years ago
  46. 99f9637 Issue 2986: Add autojunk paramater to SequenceMatcher to turn off heuristic. Patch by Terry Reedy, Eli Bendersky, and Simon Cross by Terry Reedy · 14 years ago
  47. 17f9b3d Add NEWS entry for r86732 and fix double function in the table. by Ezio Melotti · 14 years ago
  48. 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 14 years ago
  49. f21c7ed #10299: Add a table that lists all the built-in functions in functions.rst by Ezio Melotti · 14 years ago
  50. 6d2ab71 Issue 1859: Doc that textwrap does not break on \n (pending possible behavior patch). Patch by Jeremy Thurgood. by Terry Reedy · 14 years ago
  51. 4f13d61 assert.h is also included. Thanks to Savio Sena. by Georg Brandl · 14 years ago
  52. 57410c1 #10511: clarification of what heaps are; suggested by Johannes Hoff. by Georg Brandl · 14 years ago
  53. 5a93265 #10468: document Unicode exception creation and access functions. by Georg Brandl · 14 years ago
  54. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  55. 28053fb Remove unnecessary `object` base class in docs (#10366). by Éric Araujo · 14 years ago
  56. d4bbab2 Issue #10138: Removed 'indefinitely' from the proleptic calendar description. by Alexander Belopolsky · 14 years ago
  57. 2a07d6e Issue 3292: Fixup to the Sequence docs. by Raymond Hettinger · 14 years ago
  58. 0ef956f Issue 6722: Improve the namedtuple examples. by Raymond Hettinger · 14 years ago
  59. 086f308 Issue 10470: 'python -m unittest' launches test discovery by default.(If you need to pass options to test discovery the discover subcommand must still be specified explicitly.) by Michael Foord · 14 years ago
  60. 47c74ac Issue #10488: Bring documentation for 'float' builtin up to date. by Mark Dickinson · 14 years ago
  61. faed5b5 Add CSS rule for the deprecated-removed directive by Ezio Melotti · 14 years ago
  62. 925914f Add sets to the precedence table. by Brett Cannon · 14 years ago
  63. e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 14 years ago
  64. 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 14 years ago
  65. b2b2382 Fix capitalization. by Mark Dickinson · 14 years ago
  66. 2dad5ca Add a couple of missing versionadded tags in the inspect module docs by Nick Coghlan · 14 years ago
  67. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 14 years ago
  68. d3309df Style edits in followup to r86521 (#9312) by Éric Araujo · 14 years ago
  69. 2a1e3e2 Issue #7770: Note the useful range of sin/cos in the decimal module examples. by Raymond Hettinger · 14 years ago
  70. fe502ea Clean-up the description of the range object. by Raymond Hettinger · 14 years ago
  71. 0f44179 Document index and count as part of the Sequence ABC (#9746) by Éric Araujo · 14 years ago
  72. 8b9f0c5 Fix email doc update I overlooked (thanks, Éric) by R. David Murray · 14 years ago
  73. b85b3af In 3.x, bytearray is akin to bytes, not str. by Antoine Pitrou · 14 years ago
  74. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  75. cc7ebb8 Issue 9732: remove use of __class__ in inspect.getattr_static and note the mro exception to code execution by Michael Foord · 14 years ago
  76. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  77. bab3378 #10439: document PyCodec C APIs. by Georg Brandl · 14 years ago
  78. 75b2a5e Use correct markup for True/False/None by Ezio Melotti · 14 years ago
  79. 22170ed Add a few labels and links to unittest doc by Ezio Melotti · 14 years ago
  80. c8c60c2 Do not put a raw REPLACEMENT CHARACTER in the document. by Georg Brandl · 14 years ago
  81. c5b0ec0 remove documentation for something that's gone by Fred Drake · 14 years ago
  82. 93a6b13 Issue #4153: Updated Unicode HOWTO. by Alexander Belopolsky · 14 years ago
  83. b970142 #10455: fix typo by Ezio Melotti · 14 years ago
  84. 5d4dd3e Issue 7828: Fixed chr() and ord() documentation for wide characters by Alexander Belopolsky · 14 years ago
  85. 713d303 Fix usage of :option: in the docs (#9312). by Éric Araujo · 14 years ago
  86. b10089e Remove spurious space that was breaking Vim’s reST highlighting. by Éric Araujo · 14 years ago
  87. 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 14 years ago
  88. bcc4810 Remove duplicate period from reference doc by Michael Foord · 14 years ago
  89. a47bbf5 Issue #10446: Several changes to module documentation generated by pydoc: by Alexander Belopolsky · 14 years ago
  90. 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
  91. b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 14 years ago
  92. 42dd524 Fix typo by Ezio Melotti · 14 years ago
  93. 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 14 years ago
  94. 97b20da Add stub for PEP 3148. by Georg Brandl · 14 years ago
  95. 8593ae6 Logging: added stack_info argument. by Vinay Sajip · 14 years ago
  96. b6b76c2 Issue 10410: An iterable is not necessarily a container. by Raymond Hettinger · 14 years ago
  97. ac12787 Ignore suspicious-ignore file. by Georg Brandl · 14 years ago
  98. 5a7c11f fix copy-editing level nits by Fred Drake · 14 years ago
  99. 11c49a5 use appropriate markup by Fred Drake · 14 years ago
  100. f3b001f Issue #4471: Add the IMAP.starttls() method to enable encryption on by Antoine Pitrou · 14 years ago