1. 57d5752 Update to better reflect the usage of struct_time instances throughout; by Fred Drake · 23 years ago
  2. 4b37364 Bug #678077: Suggest alternative to os.getlogin() by Andrew M. Kuchling · 23 years ago
  3. 96ef811 Move itertools module from the sandbox and into production. by Raymond Hettinger · 23 years ago
  4. 2e0b18a Change the treatment of positions returned by PEP293 by Walter Dörwald · 23 years ago
  5. 2adbb83 SF bug #671447: StringIO doc doesn't say it's sometimes read-only. by Raymond Hettinger · 23 years ago
  6. 008a36a Fix markup error. by Fred Drake · 23 years ago
  7. 301eb71 Author markup: Andrew got to it first by Raymond Hettinger · 23 years ago
  8. 7934bc2 Move a footnote to the end of the sentence, so the note mark won't by Fred Drake · 23 years ago
  9. c23e019 More markup changes for consistency. by Fred Drake · 23 years ago
  10. 68e6d57 Various minor markup adjustments. by Fred Drake · 23 years ago
  11. 0a9cc58 Adjust some of Skip's latest changes slightly; these really are things by Fred Drake · 23 years ago
  12. 13a2863 * add \versionadded{} strings as appropriate by Skip Montanaro · 23 years ago
  13. 2ef85a7 Fix minor typos. by Raymond Hettinger · 23 years ago
  14. cd5c8c2 SF #638299, LaTeX documentation for logging package by Neal Norwitz · 23 years ago
  15. daae327 Fix markup by Neal Norwitz · 23 years ago
  16. 8d81a01 date and datetime comparison: when we don't know how to by Tim Peters · 23 years ago
  17. 6d9f9b3 Fred drives and fixes a formatting nit. by Barry Warsaw · 23 years ago
  18. 2a44a8d SF bug 660872: datetimetz constructors behave counterintuitively (2.3a1). by Tim Peters · 23 years ago
  19. 10cadce Reimplemented datetime.now() to be useful. by Tim Peters · 23 years ago
  20. f196a0a "Premature" doc changes, for new astimezone() rules, and the new by Tim Peters · 23 years ago
  21. b01c39b SF bug 671779: Error in tzinfo.dst() docs by Tim Peters · 23 years ago
  22. 1f7a271 more tweaks by Skip Montanaro · 23 years ago
  23. 190613c * document open() function by Skip Montanaro · 23 years ago
  24. 327098a New rule for tzinfo subclasses handling both standard and daylight time: by Tim Peters · 23 years ago
  25. 9543b34 SF patch #670423: Add missing identity tests to operator.c by Raymond Hettinger · 23 years ago
  26. 42b567f Fix a couple of markup errors. by Fred Drake · 23 years ago
  27. a5caa6f reference the os module and the lock flags in the os.open() function. by Skip Montanaro · 23 years ago
  28. 3801ec7 Document that __cmp__() is not defined for sets. by Raymond Hettinger · 23 years ago
  29. 0c6774d Patch #661719: Expose compilation errors as exceptions on request. by Martin v. Löwis · 23 years ago
  30. d69663d Patch #473586: Implement CGIXMLRPCRequestHandler. by Martin v. Löwis · 23 years ago
  31. 2bd1568 SF patch 664183 and SF bug 664044: Note that both u'%s' % 'x' and by Raymond Hettinger · 23 years ago
  32. 06daee9 Try to make a sentance more readable. by Neal Norwitz · 23 years ago
  33. e68fbc4 SF #665570, curses causes interpreter crash by Neal Norwitz · 23 years ago
  34. 8ec17a0 Minor correction and clarification. by Fred Drake · 23 years ago
  35. 3cb68a2 Remove extra 'types' Change a couple of list -> mylist by Neal Norwitz · 23 years ago
  36. 6fe1299 SF bug #652888: bad documentation for the "type" builtin by Raymond Hettinger · 23 years ago
  37. 312141c Purged reference to defunct datetimetz. by Tim Peters · 23 years ago
  38. 9b44571 Various minor edits by Andrew M. Kuchling · 23 years ago
  39. 0f0e6b9 Markup fix by Andrew M. Kuchling · 23 years ago
  40. 0037202 Massive fiddling to reflect that datetimetz and timetz no longer exist. by Tim Peters · 23 years ago
  41. 326c72a Add notes about the linuxaudiodev and ossaudiodev modules. by Fred Drake · 23 years ago
  42. 19b6f60 There's no such method as has_option() -- should be has_extn(). by Greg Ward · 23 years ago
  43. b6604b3 Document EX_OK and friends. by Barry Warsaw · 23 years ago
  44. 051314f SF #664011, move tarfile module in docs by Neal Norwitz · 23 years ago
  45. 8ef3d8d Fix spelling. by Raymond Hettinger · 23 years ago
  46. 488609e SF #642236, optparse LaTeX docs by Johannes Gijsbers by Neal Norwitz · 23 years ago
  47. 11f89b7 Strike any hint that from-import-* could ever be reasonable; it's a by Fred Drake · 23 years ago
  48. 2e3ae21 Fix some nits Guido brought up last August: by Fred Drake · 23 years ago
  49. 2b0a3d3 Fix markup so this will format again. by Fred Drake · 23 years ago
  50. 9f5b07d SF bug #592859: os.chmod is underdocumented by Raymond Hettinger · 23 years ago
  51. b9ef4ae SF #651082, tarfile module implementation from Lars Gustäbel by Neal Norwitz · 23 years ago
  52. 6d23b17 Fix a typo by Neal Norwitz · 23 years ago
  53. 75a6e3b datetime_from_timet_and_us(): ignore leap seconds if the platform by Tim Peters · 23 years ago
  54. adf6420 A new implementation of astimezone() that does what we agreed on in all by Tim Peters · 23 years ago
  55. 69bf8f3 SF bug #655271: Slightly modify locals() doc by Raymond Hettinger · 23 years ago
  56. 2ca2433 SF bug #651149: Review libshelve.tex when possible by Raymond Hettinger · 23 years ago
  57. 8827d0c Replaced the flawed "local time" example tzinfo class with the guts by Tim Peters · 23 years ago
  58. 397301e The tzinfo methods utcoffset() and dst() must return a timedelta object by Tim Peters · 23 years ago
  59. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 23 years ago
  60. 710fb15 astimezone() internals: if utcoffset() returns a duration, complain if by Tim Peters · 23 years ago
  61. e149798 Add some version info for new methods and class by Neal Norwitz · 23 years ago
  62. 74bcac4 - documented Ellipsis, NotImplemented by Fred Drake · 23 years ago
  63. 45e482f Document that apply() is deprecated. See: by Fred Drake · 23 years ago
  64. f361515 A quicker astimezone() implementation, rehabilitating an earlier by Tim Peters · 23 years ago
  65. 0233bd9 mention built-in constants. by Skip Montanaro · 23 years ago
  66. 1f041e7 process libconsts.tex by Skip Montanaro · 23 years ago
  67. 17804b1 new section - builtin constants by Skip Montanaro · 23 years ago
  68. 0f8e543 - use classdesc where we can (for better indexing) - more style consistency crud by Fred Drake · 23 years ago
  69. 436eadd General style conformance. Markup some unmarked constructs. by Fred Drake · 23 years ago
  70. f621232 Use funcdesc instead of classdesc to be consistent with out sections. by Raymond Hettinger · 23 years ago
  71. e2c6491 Further cleanup of exceptions. All interpolation-related exceptions by Fred Drake · 23 years ago
  72. 6222958 Spelling fix by Raymond Hettinger · 23 years ago
  73. cbd6cd2 Add markup for time object. Cleanup whitespace. Fix unbalanced parenthesis. by Raymond Hettinger · 23 years ago
  74. 9532298 Removed the now-untrue (or soon-to-be untrue) part of the astimezone() by Tim Peters · 23 years ago
  75. 2852cba Document the new ,netrc awareness in nntplib. by Eric S. Raymond · 23 years ago
  76. f91b461 Barry raised reasonable objections to the macro name \mimeheader, so by Fred Drake · 23 years ago
  77. f14730a - correct the deprecation markups so this formats again - some minor cleanups by Fred Drake · 23 years ago
  78. c5f5f87 Complete the markup for timedelta objects. by Raymond Hettinger · 23 years ago
  79. f3edea5 Use the name (path) specified in the parameter list by Neal Norwitz · 23 years ago
  80. 96a60e4 Patch #658927: Add getctime to os.path. by Martin v. Löwis · 23 years ago
  81. 5c37a77 Document standard encodings. by Martin v. Löwis · 23 years ago
  82. ee71109 SmartCookie and SerialCookie were recently deprecated by Neal Norwitz · 23 years ago
  83. 99448e5 InterpolationSyntaxError was added in 2.3 by Neal Norwitz · 23 years ago
  84. 2714706 Phrase repair. by Guido van Rossum · 23 years ago
  85. 8e7ec7c Minor markup and spelling repair. by Guido van Rossum · 23 years ago
  86. 81e4aa7 - re-mark ESR's warning about extended registry syntax by Fred Drake · 23 years ago
  87. 740f800 - fix use of \refmodule markup by Fred Drake · 23 years ago
  88. 2969233 Add dummy_thread[ing] sections and reference these from libthread[ing]. by Guido van Rossum · 23 years ago
  89. ad50ca9 Brett Cannon's dummy_thread and dummy_threading modules (SF patch by Guido van Rossum · 23 years ago
  90. a37e5cc We're using strictly American spellings, so there's no diaresis over by Fred Drake · 23 years ago
  91. bad8ff0 A step on the way to making tzinfo classes writable by mortals: get rid by Tim Peters · 23 years ago
  92. 9bdeee4 Clean up a table so it passes formatting. by Fred Drake · 23 years ago
  93. 0de926f Added the \var{} markup so the tables will look good. by Raymond Hettinger · 23 years ago
  94. 6005a34 Added markup upto line 233. by Raymond Hettinger · 23 years ago
  95. d1adc8a Describe the new `errors' argument to Header.__init__() and Header.append() by Barry Warsaw · 23 years ago
  96. fa91858 More markup additions by Andrew M. Kuchling · 23 years ago
  97. d6d7cfa Minor grammar fix, and clarification by Andrew M. Kuchling · 23 years ago
  98. c97868e Mark up more text by Andrew M. Kuchling · 23 years ago
  99. 40f6217 SF patch 658251: Install a C implementation of the Mersenne Twister as the by Raymond Hettinger · 23 years ago
  100. c7b0769 Incorporate Skip's suggestion to use SciPy's validation test near by Raymond Hettinger · 23 years ago