1. 739d49e Added log() function documentation by Vinay Sajip · 20 years ago
  2. 596ba4d Granted Noam Raphael's request for minor improvements to the re module and by Raymond Hettinger · 20 years ago
  3. 9fa544c Update for beta1 by Andrew M. Kuchling · 20 years ago
  4. 0c78956 Add various items by Andrew M. Kuchling · 20 years ago
  5. 4533f1f Improve three recipes in the itertools docs. by Raymond Hettinger · 20 years ago
  6. c6646c0 Added getLoggerClass() by Vinay Sajip · 20 years ago
  7. b3666a3 - Updated docs to reflect changes in 2.4. by Edward Loper · 20 years ago
  8. 468af71 Fix minor grammar typo. by Raymond Hettinger · 20 years ago
  9. 6cc1350 - Updated example output to match actual output by Edward Loper · 20 years ago
  10. 33db656 Update Template/PEP 292 documentation to current implementation. by Barry Warsaw · 20 years ago
  11. 39a3178 Patch #1025790: Add status code constants to httplib. by Martin v. Löwis · 20 years ago
  12. 2e6fb46 remove gzipped archives from the list of expected distributions by Fred Drake · 20 years ago
  13. 266a436 Remove claims that Python source code is ASCII. Fixes #1026038. by Martin v. Löwis · 20 years ago
  14. 879ddf3 Tweak the wording. Improve examples. Make more brief. by Raymond Hettinger · 20 years ago
  15. 29c6a79 Cover string.Template in the tutorial's library tour. by Raymond Hettinger · 20 years ago
  16. 23f1241 SF #1027105: HardwareRandom should be renamed OSRandom by Raymond Hettinger · 20 years ago
  17. 7642f7a Credit patch from Raymond by Andrew M. Kuchling · 20 years ago
  18. 8278860 Document testmod's new exclude_empty argument. by Tim Peters · 20 years ago
  19. 2ee8099 HtmlDiff corrections from Dan Gass, + trimmed trailing whitespace. by Tim Peters · 20 years ago
  20. 6ab4b99 Patch #1025795: clarify language in Data Structures chapter of tutorial: by Johannes Gijsbers · 20 years ago
  21. 2014c03 Patch #1022152: add required 'domain' argument to gettext.translation() examples. by Johannes Gijsbers · 20 years ago
  22. d345225 Patch #1026384: fix two common typo's: by Johannes Gijsbers · 20 years ago
  23. c9c37ca Patch #1025800: remove TeX quoting from verbatim section. Thanks Dima Dorfman! by Johannes Gijsbers · 20 years ago
  24. f08437c [Bug #1023359] Make code match inheritance diagram by Andrew M. Kuchling · 20 years ago
  25. a331e86 Add some stdlib items; remove 'other changes' section; fix sorting error in list of changed modules by Andrew M. Kuchling · 20 years ago
  26. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  27. 2cc0c30 Bump version number by Andrew M. Kuchling · 20 years ago
  28. a79ec22 Update PEP292 section by Andrew M. Kuchling · 20 years ago
  29. 961c288 document the exceptions raised by sgmllib, htmllib, and HTMLParser by Fred Drake · 20 years ago
  30. a2544ee fix typo in markup by Fred Drake · 20 years ago
  31. 216b249 make_nav_panel(): Don't cause side-effects on the input variables; by Fred Drake · 20 years ago
  32. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  33. 8158e84 Fix erroneous docstring comment. by Raymond Hettinger · 20 years ago
  34. 785c65c Markup nits. by Raymond Hettinger · 20 years ago
  35. bb30af4 Add missing close parenthesis. by Raymond Hettinger · 20 years ago
  36. 18c6960 SF bug #901654: split method documentation can be improved by Raymond Hettinger · 20 years ago
  37. 1b26297 Rework some wording. by Brett Cannon · 20 years ago
  38. 2a72f19 SF bug #1020540: a wrong link from "frame object" in lib index by Raymond Hettinger · 20 years ago
  39. 1fbf9c5 Added IGNORE_EXCEPTION_DETAIL comparison option. The need is explained by Tim Peters · 20 years ago
  40. a01a2ee Applying modified version of patch #1018386, which fixes by Gustavo Niemeyer · 20 years ago
  41. 0bbf137 Make the api of the _dispatch() method more concrete. I have no idea if by Skip Montanaro · 20 years ago
  42. 410eb84 - add missing \end{seealso} - wrap long line by Fred Drake · 20 years ago
  43. 3d3db96 Add item by Andrew M. Kuchling · 20 years ago
  44. ecd5754 Remove rotor reference by Andrew M. Kuchling · 20 years ago
  45. 595ac8a Remove rotor license by Andrew M. Kuchling · 20 years ago
  46. ab459f7 Remove docs for xreadlines, mpz, rotor by Andrew M. Kuchling · 20 years ago
  47. e723863 Remove xreadlines reference by Andrew M. Kuchling · 20 years ago
  48. a46fd84 Remove TERMIOS docs by Andrew M. Kuchling · 20 years ago
  49. e4133d8 Use correct constant; remove reference to TERMIOS.py by Andrew M. Kuchling · 20 years ago
  50. e34c3bd Change from Raymond: use pos/neg instead of +/- 1; minor edits by Andrew M. Kuchling · 20 years ago
  51. ab77822 Describe non-recursive re by Andrew M. Kuchling · 20 years ago
  52. b07aae2 Add bug/patch counts by Andrew M. Kuchling · 20 years ago
  53. 3294e9d Update versions and dates; add PEP 328 by Andrew M. Kuchling · 20 years ago
  54. 17952b7 Updated doc for getLogger() by Vinay Sajip · 20 years ago
  55. 1a4ddae SF patch #1007189, multi-line imports, for instance: by Anthony Baxter · 20 years ago
  56. 38330fe The distinction between comparison flags and reporting flags isn't unique by Tim Peters · 20 years ago
  57. ed04748 Fix build error: \filename{/dev/urandom} -> \file{/dev/urandom}. by Johannes Gijsbers · 20 years ago
  58. cb7b3f3 Add items by Andrew M. Kuchling · 20 years ago
  59. ae882f7 Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob. by Johannes Gijsbers · 20 years ago
  60. 356a459 Teach the random module about os.urandom(). by Raymond Hettinger · 20 years ago
  61. e064b41 Patch #914575: difflib side by side diff support, diff.py s/b/s HTML option. by Martin v. Löwis · 20 years ago
  62. dc3883f Patch #934711: Expose platform-specific entropy. by Martin v. Löwis · 20 years ago
  63. 6ab78cd SF feature request #992967: array.array objects should support sequences. by Raymond Hettinger · 20 years ago
  64. 592ef61 Correct incorrect "it's" to "its". by Johannes Gijsbers · 20 years ago
  65. f33683f Fine tune a word. by Tim Peters · 20 years ago
  66. cf53355 Thinko repair. by Tim Peters · 20 years ago
  67. a07bcd4 Reorg of exception section. Now that there are fewer details needing by Tim Peters · 20 years ago
  68. f4fd79c Small wording fixups. by Raymond Hettinger · 20 years ago
  69. a89f88d Added REPORT_ONLY_FIRST_FAILURE flag, which supresses output after the by Edward Loper · 20 years ago
  70. 71f55af Renamed UNIFIED_DIFF->REPORT_UDIFF; CONTEXT_DIFF->REPORT_CDIFF; and by Edward Loper · 20 years ago
  71. 0e44807 Restored half of a \versionadded only half of which should have been deleted. by Tim Peters · 20 years ago
  72. e8bbfe4 Patch #1015012. Improve markup and punctuation in libsocket.tex by Dave Cole · 20 years ago
  73. 3203efb Patch #1014930. Expose current parse location to XMLParser. by Dave Cole · 20 years ago
  74. 19b1958 Only recognize the expected output as an exception if it *starts* with by Edward Loper · 20 years ago
  75. e3a1b48 clean up markup for --executable description by Fred Drake · 20 years ago
  76. 87c98b2 Add various items by Andrew M. Kuchling · 20 years ago
  77. 9f5c0c4 Patch #736857, #736859: Add -e option to build_scripts. by Martin v. Löwis · 20 years ago
  78. be83737 Patch #798244: More urllib2 examples. by Martin v. Löwis · 20 years ago
  79. 8d494f3 Patch #1015021: Stop claiming that coerce can return None. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  80. 08b07de Ah whoops, we didn't turn string into a package (thanks Neal!) by Barry Warsaw · 20 years ago
  81. 8bee761 PEP 292 classes Template and SafeTemplate are added to the string module. by Barry Warsaw · 20 years ago
  82. c885443 Stop producing or using OverflowWarning. PEP 237 thought this would by Tim Peters · 20 years ago
  83. 07fda7e Updated the socketpair() docstring and documentation to explain that the by Dave Cole · 20 years ago
  84. 656f7e4 Removed redundant versionadded{} for NDIFF_DIFF. Virtually everything by Tim Peters · 20 years ago
  85. 8bd5cb3 Add version info by Neal Norwitz · 20 years ago
  86. c6cbab0 Added NDIFF_DIFF option. by Tim Peters · 20 years ago
  87. d3b0bab SF bug #1013760: Error in Chapter 4 of Tutorial by Raymond Hettinger · 20 years ago
  88. 5268c39 sf #1009373, #1005936. fix underscores in index entries in PDF files. by Neal Norwitz · 20 years ago
  89. 7109b28 Fix grammar, spotted by Hye-Shik Chang by Neal Norwitz · 20 years ago
  90. 8e3bec5 Correct argument specifications of load_compiled and load_source: the file by Johannes Gijsbers · 20 years ago
  91. c890618 Quote # as \# to make lib compile again. by Johannes Gijsbers · 20 years ago
  92. 8623b36 Try to improve grammar and use versionadded by Neal Norwitz · 20 years ago
  93. 525b315 Fix markup. versionchanged automatically adds a period, so remove the extra one. by Neal Norwitz · 20 years ago
  94. 026f8dc Now that they've settled down, document doctest directives. by Tim Peters · 20 years ago
  95. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 20 years ago
  96. c6f3c8b fix SF bug #1008690: Incorrect <link rel="index"> href in Tutorial by Fred Drake · 20 years ago
  97. cf02e31 Remove commented definition of the MKHOWTO macro. by Matthias Klose · 20 years ago
  98. 5b75f7d Remove zero-byte gif files from generated html docs by Matthias Klose · 20 years ago
  99. 75b9da4 Patch #995126: Correct directory size, and generate GNU tarfiles by default. by Martin v. Löwis · 20 years ago
  100. ae075b6 Patch #1011144: Correct regex for coding decls. by Martin v. Löwis · 20 years ago