1. ecfec78 [Bug #1508766] Add docs for uuid module; this puts the module in the 'Internet Protocols' section. Arguably this module could also have gone in the chapters on strings or encodings, maybe even the crypto chapter. Fred, please move if you see fit. by Andrew M. Kuchling · 19 years ago
  2. 146d392 [Bug #1508766] Add docs for uuid module; docs written by George Yoshida, with minor rearrangements by me. by Andrew M. Kuchling · 19 years ago
  3. 999a336 Make full module name available as __module_name__ even when __name__ is set to something else (like '__main__') by Nick Coghlan · 19 years ago
  4. 978ec9a Small fixes, mostly in the markup. by Thomas Heller · 19 years ago
  5. 066769c Fix typos. by Thomas Heller · 19 years ago
  6. 3f1f7be Update url. by George Yoshida · 19 years ago
  7. fab461a SF patch 1504676: Make sgmllib char and entity references pluggable by Fred Drake · 19 years ago
  8. b526a29 minor documentation cleanup. mention the bsddb.db interface explicitly by name. by Gregory P. Smith · 19 years ago
  9. 143cefb Patch #1446489 (zipfile: support for ZIP64) by Ronald Oussoren · 19 years ago
  10. f143510 Document paramflags. by Thomas Heller · 19 years ago
  11. bcae622 Write more docs. by Thomas Heller · 19 years ago
  12. 43898b4 SequenceMatcher.get_matching_blocks(): This now guarantees that by Tim Peters · 19 years ago
  13. 5d7c290 Updated documentation for pysqlite 2.3.0 API. by Gerhard Häring · 19 years ago
  14. b66902f More docs for ctypes. by Thomas Heller · 19 years ago
  15. 9291332 Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  16. f0d02fb The site module documentation also described the Windows behaviour incorrectly. by Nick Coghlan · 19 years ago
  17. d1c797e SF #1366250: optparse docs: fix inconsistency in variable name; minor tweaks. by Greg Ward · 19 years ago
  18. a754a22 Add versionadded to doc by Neal Norwitz · 19 years ago
  19. 7f54740 Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately, by Greg Ward · 19 years ago
  20. 82578c8 New docs for ctypes. by Thomas Heller · 19 years ago
  21. c5221e1 Sync with Optik docs (rev 518): by Greg Ward · 19 years ago
  22. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 19 years ago
  23. 5cf565d Import wsgiref into the stdlib, as of the external version 0.1-r2181. by Phillip J. Eby · 19 years ago
  24. 676725d Add functools.update_wrapper() and functools.wraps() as described in PEP 356 by Nick Coghlan · 19 years ago
  25. 06c5c8a Typo fix by Andrew M. Kuchling · 19 years ago
  26. e275d3d Mention other placeholders by Andrew M. Kuchling · 19 years ago
  27. 12238d7 Add an SQLite introduction, taken from the 'What's New' text by Andrew M. Kuchling · 19 years ago
  28. dba6318 On python-dev Thomas Heller said these were committed by Tim Peters · 19 years ago
  29. 56dab85 Specify argtypes for all test functions. Maybe that helps on strange ;-) architectures by Thomas Heller · 19 years ago
  30. bf0400a Remove doctest.testmod's deprecated (in 2.4) `isprivate` by Tim Peters · 19 years ago
  31. 28eeefe Revert revisions: by Tim Peters · 19 years ago
  32. 67966be Markup fix by George Yoshida · 19 years ago
  33. 6539d2d Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  34. 4094b3d Minor rewording by Andrew M. Kuchling · 19 years ago
  35. 27ca711 [Bug #1441864] Clarify description of 'data' argument by Andrew M. Kuchling · 19 years ago
  36. 794c89b [Bug #1475554] Strengthen text to say 'must' instead of 'should' by Andrew M. Kuchling · 19 years ago
  37. 29d530b [Bug #1472084] Fix description of do_tag by Andrew M. Kuchling · 19 years ago
  38. d609b1a pprint functions used to sort a dict (by key) if and only if by Tim Peters · 19 years ago
  39. 622f144 [Bug #1473048] by Andrew M. Kuchling · 19 years ago
  40. 14a0952 Clarify wording on default values for strptime(); defaults are used when better by Brett Cannon · 19 years ago
  41. 261e251 Patches #1497027 and #972322: try HTTP digest auth first, by Georg Brandl · 19 years ago
  42. c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 19 years ago
  43. f3c65de Patch #1080727: add "encoding" parameter to doctest.DocFileSuite by George Yoshida · 19 years ago
  44. cc7570f Write more docs. by Thomas Heller · 19 years ago
  45. 9c0e9c0 needspeed: rpartition documentation, tests, and a bug fixes. by Fredrik Lundh · 19 years ago
  46. 2d6c5a8 Reordered, and wrote more docs. by Thomas Heller · 19 years ago
  47. 69bfaab Write some docs. by Thomas Heller · 19 years ago
  48. ada638b For now, I gave up with automatic conversion of reST to Python-latex, by Thomas Heller · 19 years ago
  49. a0fcf50 Typo fixes by Andrew M. Kuchling · 19 years ago
  50. 0c93ff6 Clarify docs for str.partition(). by Georg Brandl · 19 years ago
  51. 06a69dd needforspeed: partition implementation, part two. by Fredrik Lundh · 19 years ago
  52. 007a382 Bug #1490688: properly document %e, %f, %g format subtleties. by Georg Brandl · 19 years ago
  53. 7b90e16 Bug #1462152: file() now checks more thoroughly for invalid mode by Georg Brandl · 19 years ago
  54. b89316f Patch #1180296: improve locale string formatting functions by Georg Brandl · 19 years ago
  55. c01b6ae Remove misleading comment about type-class unification. by Georg Brandl · 19 years ago
  56. 1b38357 Text files missing the SVN eol-style property. by Tim Peters · 19 years ago
  57. 0c8d7b0 Document ImportWarning by George Yoshida · 19 years ago
  58. 2f6ce53 Mention that Exception is now a subclass of BaseException. by George Yoshida · 19 years ago
  59. 8d3342b Patch #1435422: zlib's compress and decompress objects now have a copy() method. by Georg Brandl · 19 years ago
  60. 90df06e Add \exception markup by George Yoshida · 19 years ago
  61. 2b161d9 Integrated the rest of the pysqlite reference manual into the Python by Gerhard Häring · 19 years ago
  62. 4917c34 Grammar fix by George Yoshida · 19 years ago
  63. 879768d Change WindowsError to carry the Win32 error code in winerror, by Martin v. Löwis · 19 years ago
  64. dd0c312 Fix two small errors in argument lists. by Georg Brandl · 19 years ago
  65. 38c6a22 Patch #1484695: Update the tarfile module to version 0.8. This fixes by Georg Brandl · 19 years ago
  66. f8d9a97 Bug #1484978: curses.panel: clarify that Panel objects are destroyed on garbage collection. by Georg Brandl · 19 years ago
  67. b158255 Bug #1485447: subprocess: document that the "cwd" parameter isn't used to find the executable. Misc. other markup fixes. by Georg Brandl · 19 years ago
  68. e7d9539 Bug #1482988: indicate more prominently that the Stats class is in the pstats module. by Georg Brandl · 19 years ago
  69. 0901965 Minor language edit by Andrew M. Kuchling · 19 years ago
  70. ce5933f Use \versionchanged for the feature change by George Yoshida · 19 years ago
  71. d3d8ecd describe optional arguments for DocFileSuite by George Yoshida · 19 years ago
  72. d8accb3 Get rid of a couple more context object references, fix some markup and clarify what happens when a generator context function swallows an exception. by Nick Coghlan · 19 years ago
  73. afd5e63 Finish bringing SVN into line with latest version of PEP 343 by getting rid of all remaining references to context objects that I could find. Without a __context__() method context objects no longer exist. Also get test_with working again, and adopt a suggestion from Neal for decimal.Context.get_manager() by Nick Coghlan · 19 years ago
  74. a3a1329 Correct some formulations, fix XXX comments. by Martin v. Löwis · 19 years ago
  75. 4511a71 Whitespace normalization. by Tim Peters · 19 years ago
  76. 3053667 fix up whitespace in prompt strings by Fred Drake · 19 years ago
  77. 5f1cca0 one more place to avoid extra markup (how many will there be?) by Fred Drake · 19 years ago
  78. f25fa6d avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to by Fred Drake · 19 years ago
  79. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 19 years ago
  80. 017e68c SF #1479988: add methods to allow access to weakrefs for the by Fred Drake · 19 years ago
  81. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 19 years ago
  82. 4bbf66e Markup fixes by Andrew M. Kuchling · 19 years ago
  83. edbe657 Markup fixes; add some XXX comments noting problems by Andrew M. Kuchling · 19 years ago
  84. 5f43074 Add msilib documentation. by Martin v. Löwis · 19 years ago
  85. 82560eb Further integration of the documentation for the sqlite3 module. There's still by Gerhard Häring · 19 years ago
  86. 6550f03 - minor clarification in section title by Fred Drake · 19 years ago
  87. 3583cff Patch #1472854: make the rlcompleter.Completer class usable on non- by Georg Brandl · 19 years ago
  88. fa42bd7 Patch #1470846: fix urllib2 ProxyBasicAuthHandler. by Georg Brandl · 19 years ago
  89. 5085fe2 Use \versionchanged instead of \versionadded for new parameter support. by George Yoshida · 19 years ago
  90. eb2e192 This is the start of documentation for the sqlite3 module. Please feel free to by Gerhard Häring · 19 years ago
  91. f674939 grammar fix by George Yoshida · 19 years ago
  92. d771672 correct a dead link by George Yoshida · 19 years ago
  93. 6778007 Bug #1475009: clarify ntpath.join behavior with absolute components by Georg Brandl · 19 years ago
  94. efd3a09 Mention the xmlrpclib.Error base class, which is used in one of the examples by Andrew M. Kuchling · 19 years ago
  95. 356f938 [Bug #1477140] Import Error base class by Andrew M. Kuchling · 19 years ago
  96. 7acb7b4 [Bug #1477102] Add necessary import to example by Andrew M. Kuchling · 19 years ago
  97. 4b8ec63 add missing word by Fred Drake · 19 years ago
  98. 790c3c1 Fix an error in the last contextlib.closing example by Nick Coghlan · 19 years ago
  99. 2afbf96 markup fixes, cleanup by Fred Drake · 19 years ago
  100. 34a70c6 Fix markup glitch in unittest docs. Will backport. by Thomas Wouters · 19 years ago