1. 2fa2f5d Revert socket.rst to unix-eol. by Georg Brandl · 18 years ago
  2. f725b95 Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst. by Georg Brandl · 18 years ago
  3. 9749e15 Remove with_statement future imports from 2.6 docs. by Georg Brandl · 18 years ago
  4. 9871d8f Continue rolling back pep-3141 changes that changed behavior from 2.5. This by Jeffrey Yasskin · 18 years ago
  5. 1b50fd7 Add error-checking to namedtuple's _replace() method. by Raymond Hettinger · 18 years ago
  6. 02740f7 Improve namedtuple's _cast() method with a docstring, new name, and error-checking. by Raymond Hettinger · 18 years ago
  7. 54966a5 Fix markup by Andrew M. Kuchling · 18 years ago
  8. 04ae916 Added interface to Windows' WSAIoctl and a simple example for a network sniffer. by Christian Heimes · 18 years ago
  9. e0734e7 Minor fix-ups to named tuples: by Raymond Hettinger · 18 years ago
  10. 7ef1ce6 Markup fixes; grammar tweaks by Andrew M. Kuchling · 18 years ago
  11. eebb79c Added copysign(x, y) function to the math module by Christian Heimes · 18 years ago
  12. e2ca424 Added math.isinf() and math.isnan() by Christian Heimes · 18 years ago
  13. 2f3c16b Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just by Jeffrey Yasskin · 18 years ago
  14. 81a885a Improve docs for itertools.groupby(). The use of xrange(0) to create a unique object is less obvious than object(). by Raymond Hettinger · 18 years ago
  15. 5d332bb Simpler documentation for itertools.tee(). Should be backported. by Raymond Hettinger · 18 years ago
  16. b19be57 Some cleanup in the docs. by Georg Brandl · 18 years ago
  17. 02de897 Patch #1583 by Adam Olsen. by Guido van Rossum · 18 years ago
  18. 85dfcf3 Users demand iterable input for named tuples. The author capitulates. by Raymond Hettinger · 18 years ago
  19. 0a8143f Applied patch #1635: Float patch for inf and nan on Windows (and other platforms). by Christian Heimes · 18 years ago
  20. 8777bca Simplify and speedup _asdict() for named tuples. by Raymond Hettinger · 18 years ago
  21. 88880b2 Add more namedtuple() test cases. Neaten the code and comments. by Raymond Hettinger · 18 years ago
  22. 1bd51e3 Remove curious space-like characters. by Georg Brandl · 18 years ago
  23. 6dfe956 Remove another unnecessary Unicode character. by Georg Brandl · 18 years ago
  24. 459744c Remove gratuitous unicode character. by Georg Brandl · 18 years ago
  25. 05df69b Remove orphaned footnote reference. by Georg Brandl · 18 years ago
  26. e846f38 Add usage note by Raymond Hettinger · 18 years ago
  27. 07ae83f Faster and simpler _replace() method by Raymond Hettinger · 18 years ago
  28. 48eca67 Add line spacing for readability by Raymond Hettinger · 18 years ago
  29. 42da874 Cleaner method naming convention by Raymond Hettinger · 18 years ago
  30. 04a9a0e Simplify implementation of __replace__() by Raymond Hettinger · 18 years ago
  31. 7c7f6af Added wide char api variants of getch and putch to msvcrt module. The wide char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too. by Christian Heimes · 18 years ago
  32. 338d418 Use a versionchanged directive. by Brett Cannon · 18 years ago
  33. 5466246 correct email address by Skip Montanaro · 18 years ago
  34. e40a6a8 Add examples to the datetime documentation. Written for GHOP by "h4wk.cz". by Georg Brandl · 18 years ago
  35. ba9eea5 Don't have the docs berate themselves. Keep a professional tone. by Raymond Hettinger · 18 years ago
  36. d6b20dc Better re.split examples. by Georg Brandl · 18 years ago
  37. 2b92f6b Diverse markup fixes. by Georg Brandl · 18 years ago
  38. b8df156 Add examples to re docs. Written for GHOP by Dan Finnie. by Georg Brandl · 18 years ago
  39. 722e101 Add examples to csv, pprint and traceback docs. Written by Ross for GHOP. by Georg Brandl · 18 years ago
  40. c37f288 Add tutorial and examples to logging docs, from GHOP student "oscar8thegrouch". by Georg Brandl · 18 years ago
  41. 0a0cf16 Add examples to the xmlrpclib docs. Written for GHOP by Josip Dzolonga. by Georg Brandl · 18 years ago
  42. 44eeaec Patch #1537 from Chad Austin by Christian Heimes · 18 years ago
  43. 6b449f4 Issue #1727780: Support loading pickles of random.Random objects created by Martin v. Löwis · 18 years ago
  44. 584265b Add more entries to the glossary. by Georg Brandl · 18 years ago
  45. b15a8df Convert bdb.rst line endings to Unix style. by Georg Brandl · 18 years ago
  46. fefcd4e Add example to mmap docs. Written for GHOP by Rafal Rawicki. by Georg Brandl · 18 years ago
  47. 87983f2 Add "Using Python on Windows" document, by Robert Lehmann. Written for GHOP. by Georg Brandl · 18 years ago
  48. 39bd059 Add examples to the ElementTree documentation. Written by h4wk.cz for GHOP. by Georg Brandl · 18 years ago
  49. 3e76d93 Added one more missing versionadded tag by Christian Heimes · 18 years ago
  50. dfdfaab Feature #1534 by Christian Heimes · 18 years ago
  51. 81ddc1a Move lchmod() docs to correct place, and add versionadded tags. by Georg Brandl · 18 years ago
  52. 3628187 Fix for feature request #1528 Add os.fchmod by Christian Heimes · 18 years ago
  53. 82225b7 Add more examples to the wsgiref docs. From GHOP by Josip Dzolonga. by Georg Brandl · 18 years ago
  54. 430e362 Add examples to the ConfigParser documentation. by Georg Brandl · 18 years ago
  55. 9d83daa Fix reference target. by Georg Brandl · 18 years ago
  56. d7b3337 Added py3kwarning to the documentation of the sys module. by Christian Heimes · 18 years ago
  57. 28104c5 Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 by Christian Heimes · 18 years ago
  58. c8dfd58 Bug #1494: Document that appendChild removes first. by Martin v. Löwis · 18 years ago
  59. b67da6e #1735632: add O_NOATIME constant to os module. by Georg Brandl · 18 years ago
  60. f8b6abd #1355: remove mention of PyXML from xml.dom docs. by Georg Brandl · 18 years ago
  61. 586edab #1467: fix documentation for TestResult.add{Error,Failure}. by Georg Brandl · 18 years ago
  62. 439f250 #1344: document that you need to open std{in,out,err} with PIPE if you want by Georg Brandl · 18 years ago
  63. c045883 Fixed detail in add_type() explanation (issue 1463). by Facundo Batista · 18 years ago
  64. 8465ae8 Fix signature in example by Raymond Hettinger · 18 years ago
  65. bc69349 Add example for use cases requiring default values. by Raymond Hettinger · 18 years ago
  66. 7c3738e Example of multiple replacements. by Raymond Hettinger · 18 years ago
  67. 213ae01 Fixup example in docs. by Raymond Hettinger · 18 years ago
  68. 5681cbc Small improvement to the implementation of __replace__(). by Raymond Hettinger · 18 years ago
  69. eeeb9c4 Accept Issac Morland's suggestion for __replace__ to allow multiple replacements by Raymond Hettinger · 18 years ago
  70. b5b6f3c Remove dead link from random docs. by Georg Brandl · 18 years ago
  71. 07c19ea Fix seealso link to sets docs. Do not merge to Py3k. by Georg Brandl · 18 years ago
  72. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 18 years ago
  73. 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 18 years ago
  74. e1ac4f1 Fixes Issue 1385: The hmac module now computes the correct hmac when using by Gregory P. Smith · 18 years ago
  75. 91f9429 Clarified the fact that you can have comments for individual archive by Mark Summerfield · 18 years ago
  76. aea6e59 Added cross-references between the various archive file formats. by Mark Summerfield · 18 years ago
  77. 9c466ba Fix syntax for versionchanged markup. by Georg Brandl · 18 years ago
  78. d469ff1 Note change to get_dialect semantics in 2.5. Will backport to 2.5. by Skip Montanaro · 18 years ago
  79. 7c3e79f Make "hashable" a glossary entry and clarify docs on __cmp__, __eq__ and __hash__. by Georg Brandl · 18 years ago
  80. ac3d429 Added more file-handling related cross-references. by Mark Summerfield · 18 years ago
  81. 744b32a Fix markup glitch. by Georg Brandl · 18 years ago
  82. 03b15c6 #1364: os.lstat is available on Windows too, as an alias to os.stat. by Georg Brandl · 18 years ago
  83. 405884c Sets are marshalable. by Raymond Hettinger · 18 years ago
  84. 84e26b6 Clarify the reasons why pickle is almost always better than marshal by Raymond Hettinger · 18 years ago
  85. 1a94ec2 Bug #1287: make os.environ.pop() work as expected. by Georg Brandl · 18 years ago
  86. 5300428 Bug #1313, fix typo (wrong variable name) in example. by Neal Norwitz · 18 years ago
  87. 8feafab Add phuang patch from Issue 708374 which adds offset parameter to mmap module. by Travis E. Oliphant · 18 years ago
  88. a739503 Add :term:s for "new-style class". by Georg Brandl · 18 years ago
  89. e7a0990 Add :term:s for iterator. by Georg Brandl · 18 years ago
  90. cf3fb25 Add :term: for generators. by Georg Brandl · 18 years ago
  91. bb75e4e Unify "file-descriptor" to "file descriptor". by Georg Brandl · 18 years ago
  92. 5e52db0 Add :term:s for descriptors. by Georg Brandl · 18 years ago
  93. 5c174bb Add markup to new function descriptions. by Georg Brandl · 18 years ago
  94. 63fa168 Unify "byte code" to "bytecode". Also sprinkle :term: markup for it. by Georg Brandl · 18 years ago
  95. 529b1a9 Fix protocol name by Andrew M. Kuchling · 18 years ago
  96. ff27e0c Fix code being interpreted as a target. by Georg Brandl · 18 years ago
  97. a2ba6ea #1284: "S" means "seen", not unread. by Georg Brandl · 18 years ago
  98. 0752d20 Added a cross-ref to each other. by Mark Summerfield · 18 years ago
  99. c4ed971 Clarify wording for apply(). by Georg Brandl · 18 years ago
  100. d97110d Issue 1289, just a typo. by Facundo Batista · 18 years ago