1. e3c330b Replaced some tabs with spaces in verbatim section. by Vinay Sajip · 20 years ago
  2. ee5e4cd [Bug #984017] Incorrect prototype, fixed by Timothy Stranex by Andrew M. Kuchling · 20 years ago
  3. bcefe69 Add logging changes by Andrew M. Kuchling · 20 years ago
  4. 7497966 Typo repair. by Tim Peters · 20 years ago
  5. 2f55eb4 Demonstrate how to round final result. by Raymond Hettinger · 20 years ago
  6. 10959b1 Expand examples to show polymorphism by Raymond Hettinger · 20 years ago
  7. 77e13b4 Simplify examples. by Raymond Hettinger · 20 years ago
  8. c4f93d44 Doc tested the recipes. by Raymond Hettinger · 20 years ago
  9. 9c719ba Fix typo by Raymond Hettinger · 20 years ago
  10. d84efb3 * Added missing info on construction from a tuple. * Added a recipe section. by Raymond Hettinger · 20 years ago
  11. 8de63a2 Add decimal docs to the core. by Raymond Hettinger · 20 years ago
  12. 71432f1 Various edits by Andrew M. Kuchling · 20 years ago
  13. 3bf85f1 Various edits by Andrew M. Kuchling · 20 years ago
  14. 3b79091 Bump version #; write introductory para by Andrew M. Kuchling · 20 years ago
  15. d0b6d9d More additions by Andrew M. Kuchling · 20 years ago
  16. 068979c Textual change to make the doc reflect reality by Nicholas Bastin · 20 years ago
  17. d4be86c Write another section by Andrew M. Kuchling · 20 years ago
  18. c8f8a81 Rewrite two sections by Andrew M. Kuchling · 20 years ago
  19. a13c60b Moved example section up to just after the section on Logger objects, and changed it to use the new basicConfig() API by Vinay Sajip · 20 years ago
  20. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  21. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  22. 78bace7 add cp866 row by Skip Montanaro · 20 years ago
  23. d88471f Change signatures for arguments to "s" and friends to be the proper ``const by Brett Cannon · 20 years ago
  24. ac1075a Document that encode() and decode() raise UnicodeError instead of ValueError. by Walter Dörwald · 20 years ago
  25. ecf7a52 link to the codecs page from the "".encode() description. by Skip Montanaro · 20 years ago
  26. 1b89656 add omitted markup by Fred Drake · 20 years ago
  27. 68a37ac * Fix typos. by Raymond Hettinger · 20 years ago
  28. 0fff62f Move Decimal from the sandbox into production. by Raymond Hettinger · 20 years ago
  29. 2ccf5d6 use file() in preference to open() by Skip Montanaro · 20 years ago
  30. d5cf143 Check in the updated version of patch #957240, which doesn't rely by Michael W. Hudson · 20 years ago
  31. 96b935e fix handling when a proper getopt(1) is available; the "--" by Fred Drake · 20 years ago
  32. 6d3a0d2 [Bug #948970] Add PyExc_* symbols to index. by Andrew M. Kuchling · 20 years ago
  33. 7dd8fda [Bug #978556] Update SHA spec URL; bugfix candidate by Andrew M. Kuchling · 20 years ago
  34. a031a08 Add a missing space. by Brett Cannon · 20 years ago
  35. 289e4cb Changed applicable use of ``char *`` declarations that are passed into by Brett Cannon · 20 years ago
  36. 11b91a0 Added socket.getservbyport(), and make its second argument and that of by Barry Warsaw · 20 years ago
  37. ef82d2f Patch #923098: Share interned strings in marshal. by Martin v. Löwis · 20 years ago
  38. 634893d Mention Py_RETURN_NONE when introducing the idiom of how to have a function by Brett Cannon · 20 years ago
  39. 555a964 Clarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will by Brett Cannon · 20 years ago
  40. ec6229e Make distutils "install --home" support all platforms. by Fred Drake · 20 years ago
  41. b86aa99 move the note about the bsddb185 module above the "See also" box; that by Fred Drake · 20 years ago
  42. 9ddf40b SF patch 876130: add C API to datetime module, from Anthony Tuininga. by Tim Peters · 20 years ago
  43. 28224f8 Improve the documented advice on how to best use heapq.heapreplace(). by Raymond Hettinger · 20 years ago
  44. dd6d207 Fix an obvious typo (It *is* a typo, or not?) by Thomas Heller · 20 years ago
  45. a42bc21 The 'distributing python modules' manual now has an index. by Thomas Heller · 20 years ago
  46. 949f661 Fix typo - the module is named distutils.util. by Thomas Heller · 20 years ago
  47. 964c798 Use getopt where possible, so this supports option letters that get by Fred Drake · 20 years ago
  48. 3706855 Add apparently missing word for InvalidStateError definition. by Brett Cannon · 20 years ago
  49. 9e1ac24 - add link to the downloadable package in the generated email - misc. changes by Fred Drake · 20 years ago
  50. 0083c92 make the tarball available for download instead of throwing it away by Fred Drake · 20 years ago
  51. 9e151d1 add missing closing quote. by Michael W. Hudson · 20 years ago
  52. 64af6c5 Comment that getfilesystemencoding returns mbcs even on NT+. Fixes #964870. by Martin v. Löwis · 20 years ago
  53. aefde43 Reverse argument order for nsmallest() and nlargest(). by Raymond Hettinger · 20 years ago
  54. 40333ce add a pointer to the Distutils Cookbook by Fred Drake · 20 years ago
  55. b67ad7e Patch #826074: cmath.log optional base argument, fixes #823209 by Raymond Hettinger · 20 years ago
  56. ad21945 Back out #957240. by Martin v. Löwis · 20 years ago
  57. 965eeca SF bug #970042, lockf() signature uses len, doc refers to length (use length, same as docstring) by Neal Norwitz · 20 years ago
  58. 2e3dfaf Install C version of heapq.nsmallest(). by Raymond Hettinger · 20 years ago
  59. 2e66940 Minor wording and spacing nits. by Raymond Hettinger · 20 years ago
  60. 3480917 Complete the list of weakreferencable objects. by Raymond Hettinger · 20 years ago
  61. 0eb32a6 Add support for package data. by Fred Drake · 20 years ago
  62. 33ecffb SF patch #969791: Add nlargest() and nsmallest() to heapq. by Raymond Hettinger · 20 years ago
  63. 7d01966 Defining Py_GCC_ATTRIBUTE finds even some more undocumented functions. by Thomas Heller · 20 years ago
  64. 4369b59 Public Python functions are nowadays marked PyAPI_FUNC, not DL_IMPORT. by Thomas Heller · 20 years ago
  65. da4513a make a reference to the SimpleHTTPServer module a hyperlink to the docs by Fred Drake · 20 years ago
  66. 737ea82 Patch #774665: Make Python LC_NUMERIC agnostic. by Martin v. Löwis · 20 years ago
  67. 7f35404 - markup fix by Fred Drake · 20 years ago
  68. bdec50f Feature request #935915: Add os.path.devnull. by Martin v. Löwis · 20 years ago
  69. f30d60e Patch #510695: Add TSC profiling for the VM. by Martin v. Löwis · 20 years ago
  70. d68d3ee Note that memory returned by PyBuffer_New is not specifically aligned. by Neil Schemenauer · 20 years ago
  71. d348193 Add genexps to the glossary. by Raymond Hettinger · 20 years ago
  72. 44cbfd7 [Bug #953177] Mention .getlist(); text from Paul Moore by Andrew M. Kuchling · 20 years ago
  73. 0b4d1ee SF 964876 mapping a 0 length file Document that it can't be done on Windows. by Tim Peters · 20 years ago
  74. de48307 Added documentation to address SF bug #963246: limitations on multiple by Phillip J. Eby · 20 years ago
  75. cfa157d Doc fix for SF #962633. by Nicholas Bastin · 20 years ago
  76. e1ca355 [Bug #918710] Add paragraph to clarify docs by Andrew M. Kuchling · 20 years ago
  77. 1b50b43 [Bug #936837] Add missing word by Andrew M. Kuchling · 20 years ago
  78. 2d6783b SF #966375: Fix typo (Reported by Kristian Ovaska) by Hye-Shik Chang · 20 years ago
  79. 22ec5c3 if we must argue over the/they, we can just remove the unecessary word by Fred Drake · 20 years ago
  80. 175d188 avoid backticks in examples; use repr() instead by Fred Drake · 20 years ago
  81. 2d1a2aa Fix typo: the-->they by Raymond Hettinger · 20 years ago
  82. 6dfed6c Fix typo. by Guido van Rossum · 20 years ago
  83. 3151e18 Small clarification. by Michael W. Hudson · 20 years ago
  84. d6d35d9 - fix typo reported by John Belmonte - wrap a long line by Fred Drake · 20 years ago
  85. 77ca6c4 Warn abou missing mutate flag to ioctl. Fixes #696535. by Martin v. Löwis · 20 years ago
  86. 9bc4f2d Drop claims that Unicode always means UCS-2. Fixes #881861. by Martin v. Löwis · 20 years ago
  87. 4a9b806 Document string methods that are locale-dependent. Fixes #935749. by Martin v. Löwis · 20 years ago
  88. eac324b Patch #957240: Add count parameter to asyncore.loop. by Martin v. Löwis · 20 years ago
  89. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  90. d783694 Remove old reminder by Andrew M. Kuchling · 20 years ago
  91. 9c322fb The expression list in inheritance is not optional. Fixes #960448. by Martin v. Löwis · 20 years ago
  92. 477c856 Move grammar rule for lambda_form into section on lambdas. Fixes #964525. by Martin v. Löwis · 20 years ago
  93. 13ff116 Fix typo reported in #964592. Will backport to 2.3. by Martin v. Löwis · 20 years ago
  94. dd07e59 Document PyModule_AddIntConstant to take a long. Fixes #962471. by Martin v. Löwis · 20 years ago
  95. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  96. e148595 Fixup spacing in an example. by Raymond Hettinger · 20 years ago
  97. 2f50e90 SF patch 959726: sdist versus SVN by Tim Peters · 20 years ago
  98. 92816de Patch #932930: suggest the use of rawstrings for backslashes. by Martin v. Löwis · 20 years ago
  99. 2a6ba90 Patch #963318: Add support for client-side cookie management. by Martin v. Löwis · 20 years ago
  100. 874ebd5 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago