1. 8449932 #10526: fix typo. by Georg Brandl · 14 years ago
  2. 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
  3. 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
  4. 17f9b3d Add NEWS entry for r86732 and fix double function in the table. by Ezio Melotti · 14 years ago
  5. 1b9df39 Fix #8879. Add os.link support to Windows. by Brian Curtin · 14 years ago
  6. f21c7ed #10299: Add a table that lists all the built-in functions in functions.rst by Ezio Melotti · 14 years ago
  7. 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
  8. 4f13d61 assert.h is also included. Thanks to Savio Sena. by Georg Brandl · 14 years ago
  9. 57410c1 #10511: clarification of what heaps are; suggested by Johannes Hoff. by Georg Brandl · 14 years ago
  10. 5a93265 #10468: document Unicode exception creation and access functions. by Georg Brandl · 14 years ago
  11. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  12. 28053fb Remove unnecessary `object` base class in docs (#10366). by Éric Araujo · 14 years ago
  13. d4bbab2 Issue #10138: Removed 'indefinitely' from the proleptic calendar description. by Alexander Belopolsky · 14 years ago
  14. 2a07d6e Issue 3292: Fixup to the Sequence docs. by Raymond Hettinger · 14 years ago
  15. 0ef956f Issue 6722: Improve the namedtuple examples. by Raymond Hettinger · 14 years ago
  16. 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
  17. 47c74ac Issue #10488: Bring documentation for 'float' builtin up to date. by Mark Dickinson · 14 years ago
  18. faed5b5 Add CSS rule for the deprecated-removed directive by Ezio Melotti · 14 years ago
  19. 925914f Add sets to the precedence table. by Brett Cannon · 14 years ago
  20. e4dad4f Fix issue3709 - BaseHTTPRequestHandler will buffer the headers and write only on end_headers call. by Senthil Kumaran · 14 years ago
  21. 5c86339 Issue #10489: removed broken `__name__` support from configparser by Łukasz Langa · 14 years ago
  22. b2b2382 Fix capitalization. by Mark Dickinson · 14 years ago
  23. 2dad5ca Add a couple of missing versionadded tags in the inspect module docs by Nick Coghlan · 14 years ago
  24. e0f0465 Issue #10220: Add inspect.getgeneratorstate(). Initial patch by Rodolpho Eckhardt by Nick Coghlan · 14 years ago
  25. d3309df Style edits in followup to r86521 (#9312) by Éric Araujo · 14 years ago
  26. 2a1e3e2 Issue #7770: Note the useful range of sin/cos in the decimal module examples. by Raymond Hettinger · 14 years ago
  27. fe502ea Clean-up the description of the range object. by Raymond Hettinger · 14 years ago
  28. 0f44179 Document index and count as part of the Sequence ABC (#9746) by Éric Araujo · 14 years ago
  29. 8b9f0c5 Fix email doc update I overlooked (thanks, Éric) by R. David Murray · 14 years ago
  30. b85b3af In 3.x, bytearray is akin to bytes, not str. by Antoine Pitrou · 14 years ago
  31. e516265 Issue 9732: fetch the method resolution order from the type metaclass directly in getattr_static by Michael Foord · 14 years ago
  32. 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
  33. 95fc51d Issue 9732: addition of getattr_static to the inspect module by Michael Foord · 14 years ago
  34. bab3378 #10439: document PyCodec C APIs. by Georg Brandl · 14 years ago
  35. 75b2a5e Use correct markup for True/False/None by Ezio Melotti · 14 years ago
  36. 22170ed Add a few labels and links to unittest doc by Ezio Melotti · 14 years ago
  37. c8c60c2 Do not put a raw REPLACEMENT CHARACTER in the document. by Georg Brandl · 14 years ago
  38. c5b0ec0 remove documentation for something that's gone by Fred Drake · 14 years ago
  39. 93a6b13 Issue #4153: Updated Unicode HOWTO. by Alexander Belopolsky · 14 years ago
  40. b970142 #10455: fix typo by Ezio Melotti · 14 years ago
  41. 5d4dd3e Issue 7828: Fixed chr() and ord() documentation for wide characters by Alexander Belopolsky · 14 years ago
  42. 713d303 Fix usage of :option: in the docs (#9312). by Éric Araujo · 14 years ago
  43. b10089e Remove spurious space that was breaking Vim’s reST highlighting. by Éric Araujo · 14 years ago
  44. 6331520 Issue 10260 Adding the wait_for() method to threading.Condition by Kristján Valur Jónsson · 14 years ago
  45. bcc4810 Remove duplicate period from reference doc by Michael Foord · 14 years ago
  46. a47bbf5 Issue #10446: Several changes to module documentation generated by pydoc: by Alexander Belopolsky · 14 years ago
  47. 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
  48. b6d4ee5 Issue #10440: Support RUSAGE_THREAD as a constant in the resource module. by Antoine Pitrou · 14 years ago
  49. 42dd524 Fix typo by Ezio Melotti · 14 years ago
  50. 6e6cb8e Provide links to Python source where the code is short, readable and by Éric Araujo · 14 years ago
  51. 97b20da Add stub for PEP 3148. by Georg Brandl · 14 years ago
  52. 8593ae6 Logging: added stack_info argument. by Vinay Sajip · 14 years ago
  53. b6b76c2 Issue 10410: An iterable is not necessarily a container. by Raymond Hettinger · 14 years ago
  54. ac12787 Ignore suspicious-ignore file. by Georg Brandl · 14 years ago
  55. 5a7c11f fix copy-editing level nits by Fred Drake · 14 years ago
  56. 11c49a5 use appropriate markup by Fred Drake · 14 years ago
  57. f3b001f Issue #4471: Add the IMAP.starttls() method to enable encryption on by Antoine Pitrou · 14 years ago
  58. 281d6ba Add a deprecated-removed directive that allows to give the version of removal for deprecations. by Georg Brandl · 14 years ago
  59. 40d23e8 Fix weird line block in table. by Georg Brandl · 14 years ago
  60. cfa8e29 Switch to Sphinx 1.0.5. by Georg Brandl · 14 years ago
  61. 5e92a50 #10008: Fix duplicate index entry. by Georg Brandl · 14 years ago
  62. e5b5ff4 Build a PDF of the FAQs too. by Georg Brandl · 14 years ago
  63. 02a807e by Terry Reedy · 14 years ago
  64. c7399d0 #7950: add warning about security implications of shell=True to subprocess docs by R. David Murray · 14 years ago
  65. ea3e91e Issue #10389: Documented rules for use of case in section titles. by Alexander Belopolsky · 14 years ago
  66. 6495136 #1466065: add validate option to base64.b64decode by R. David Murray · 14 years ago
  67. bb27c12 Review the new configparser docs. by Georg Brandl · 14 years ago
  68. 26d513c Issue #5412: extend configparser to support mapping access by Łukasz Langa · 14 years ago
  69. 1790ed2 Fix typo. by Georg Brandl · 14 years ago
  70. ff7ffdd Issue #8028: multiprocessing: Documented that ``Process.terminate`` by Ask Solem · 14 years ago
  71. 518eaa8 Issue #7707: Documented that multiprocessing.Queue operations during by Ask Solem · 14 years ago
  72. 1d3b893 Documented the new error_callback keyword argument to multiprocessing.Pool's apply_async and map_async by Ask Solem · 14 years ago
  73. fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 14 years ago
  74. 859c4ef Make `usenetrc` False by default (the old behaviour of having it True by by Antoine Pitrou · 14 years ago
  75. 1cb121e Issue #1926: Add support for NNTP over SSL on port 563, as well as by Antoine Pitrou · 14 years ago
  76. 14fb799 Issue #7061: Added a 'Turtle star' sidebar by Alexander Belopolsky · 14 years ago
  77. e1f849c Fixed a typo in ReST markup. by Alexander Belopolsky · 14 years ago
  78. 58c0752 Issue #10335: Add tokenize.open(), detect the file encoding using by Victor Stinner · 14 years ago
  79. 7dff9e0 #10321: Add support for sending binary DATA and Message objects to smtplib by R. David Murray · 14 years ago
  80. 49d4741 Fix typo. by Georg Brandl · 14 years ago
  81. facfb15 Fix latex conversion glitch in property/feature descriptions. by Georg Brandl · 14 years ago
  82. c64cb6f Extra space caught by the post-commit-hook, aka Taggnostr :) by Senthil Kumaran · 14 years ago
  83. a0fa1ce Fix Issue 10303: a small clarification in the tutorial. by Senthil Kumaran · 14 years ago
  84. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  85. 7089a4e Fix Issue10226 - Clarifying the role of the netloc separator. by Senthil Kumaran · 14 years ago
  86. 4a3c7c4 Issue #10145: the float.is_integer method was undocumented. by Mark Dickinson · 14 years ago
  87. 43ef32a Issue 10297: Add missing import in decimal example snippet. by Mark Dickinson · 14 years ago
  88. 5ad85f8 Added example for str.format_map(). by Eric Smith · 14 years ago
  89. 6881886 #10334: add a role to refer to Python source files in SVN. by Georg Brandl · 14 years ago
  90. 1cb25aa Tweak example to make clear the argument is a boolean, not any integer. by Éric Araujo · 14 years ago
  91. c6ecb01 Fix wrapper/wrapped typo (with Raymond’s blessing) by Éric Araujo · 14 years ago
  92. 8f9626b Fix typo by Éric Araujo · 14 years ago
  93. 2642ad0 Fix typo from r86170. by Éric Araujo · 14 years ago
  94. afb078d More what's new by Antoine Pitrou · 14 years ago
  95. 7d15a72 Update 3.2 what's new by Antoine Pitrou · 14 years ago
  96. a078115 Issue #10282: Add a `nntp_implementation` attribute to NNTP objects. by Antoine Pitrou · 14 years ago
  97. 4841fd6 Merge the doc for assertTrue/False, assert[Not]AlmostEqual, assert[Not]RegexpMatches, rephrase a couple of paragraphs, and remove redundant doc about the msg arg. by Ezio Melotti · 14 years ago
  98. c275e15 Move glossary entry to the right position and fix link. by Georg Brandl · 14 years ago
  99. 08eeada Issue #10283: Add a `group_pattern` argument to NNTP.list(). by Antoine Pitrou · 14 years ago
  100. 8f2e07b Move the deprecated aliases in a new section. by Ezio Melotti · 14 years ago