1. 2dc0794 Make sure that ampersand escaping is still performed on the contents of by Fred Drake · 23 years ago
  2. cb19976 fix_font(): Instead of using a long if/elsif cluster, use a bloody by Fred Drake · 23 years ago
  3. 457c419 Fix typo reported by Joonas Paalasmaa: dada-->data by Fred Drake · 23 years ago
  4. 739282d Re-write the description of the os.spawn*() functions, and cover the by Fred Drake · 23 years ago
  5. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  6. ce1650f A large contribution from Dave Kuhlman describing what each of the slots by Fred Drake · 23 years ago
  7. 8773176 Dave Kuhlman has contributed a nice improvement to the "Defining New Types" by Fred Drake · 23 years ago
  8. 94a7eba Note addition of cleanfuture.py by Andrew M. Kuchling · 23 years ago
  9. ce575ba Fix a minor typo and mark an exception name that was missed. by Fred Drake · 23 years ago
  10. c0cf726 Add material about the "r" and "u" prefixes for string literals; should by Fred Drake · 23 years ago
  11. 0cac5f6 Added some examples of table markup. by Fred Drake · 23 years ago
  12. 3e2aca4 Add information about __floordiv__() and __truediv__() methods for by Fred Drake · 23 years ago
  13. d3ba10f Clarify the prompt in an example. This closes SF bug #450633. by Fred Drake · 23 years ago
  14. 5ef99a0 Describe the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  15. 680cabb Add "exceptions" to the list of fundamental modules created by Py_Initialize(). by Fred Drake · 23 years ago
  16. 280f725 Insert omitted "the". by Fred Drake · 23 years ago
  17. bf781a9 Add the smtpd module to the list of undocumented modules; Barry needs to by Fred Drake · 23 years ago
  18. 6943a29 David Goodger <dgoodger@atsautomation.com>: by Fred Drake · 23 years ago
  19. 84e58ab For the escape() function, added a reference to the quoteattrs() function by Fred Drake · 23 years ago
  20. 9e9c135 Add section on PEP 238 changes by Andrew M. Kuchling · 23 years ago
  21. 1cf0f17 Add a note that the quoteattr() function is useful for HTML and SGML by Fred Drake · 23 years ago
  22. 11ee902 Added documentation for PyDict_Update() and PyDict_Merge(). by Fred Drake · 23 years ago
  23. 1cb560a Do more to be compatible with Windows/CygWin. Make error messages more by Fred Drake · 23 years ago
  24. 9443dc3 Remove the use of the "cat" program. This improves portability to non-Unix by Fred Drake · 23 years ago
  25. 8a7b59e Added this LaTeX style file to the package since not all LaTeX installations by Fred Drake · 23 years ago
  26. d635e3c Added a warning about reference cycles and memory consumption to the by Fred Drake · 23 years ago
  27. 6d8d72b Usage fix, problem reported by Keith Briggs. by Fred Drake · 23 years ago
  28. e89659c Added documentation for the new rich comparison support. by Fred Drake · 23 years ago
  29. 024ef6f Remove the bogus flags parameter from the PyFile_WriteString() signature; by Fred Drake · 23 years ago
  30. 9b75dca Expose nl_langinfo through locale where available. by Martin v. Löwis · 23 years ago
  31. 8cc965c Patch #448474: Add support for tell() and seek() to gzip.GzipFile. by Martin v. Löwis · 23 years ago
  32. 0197858 Added documentation for PyNumber_*FloorDivide(), PyNumber_*TrueDivide(), by Fred Drake · 23 years ago
  33. 03590c6 Reference counting information for PyNumber_*FloorDivide() and by Fred Drake · 23 years ago
  34. e54acfd Add option to push the development docs to SF without announcing, for by Fred Drake · 23 years ago
  35. ecab001 More names.... by Fred Drake · 23 years ago
  36. 3a5ec57 Clean up some of the markup here -- be more consistent in the use of by Fred Drake · 23 years ago
  37. a7d608d "Thin" version of floor division docs: add // to the list of operators by Fred Drake · 23 years ago
  38. 8c69c91b Document two new items by Andrew M. Kuchling · 23 years ago
  39. 5821272 Add a comment on time.time() returning non-decreasing values except when by Fred Drake · 23 years ago
  40. c9908c4 Document IPv6 changes. Contributed by itojun. by Martin v. Löwis · 23 years ago
  41. 5376575 Lots of new text and example code on embedding Python in C, contributed by Fred Drake · 23 years ago
  42. b3cc29b Note that the mimetypes.MimeTypes class was added in Python 2.2. by Fred Drake · 23 years ago
  43. d5efb17 Add documentation for the new aspects of the mimetypes module. by Fred Drake · 23 years ago
  44. d86038d Apply the new \mailheader macro where appropriate, and fix a few small by Fred Drake · 23 years ago
  45. 7eac0cb Define the \mailheader macro and document conventions for using it. by Fred Drake · 23 years ago
  46. 30cf118 Minor markup nits and slight style-guide conformance changes. by Fred Drake · 23 years ago
  47. cb60dae Documented the runtimemodel attribute. by Jack Jansen · 23 years ago
  48. 5d54879 Fix some of the example code; the reference objects do not support a by Fred Drake · 23 years ago
  49. 8dd6ffd User-defined methods *can* contain things other than user-defined functions by Fred Drake · 23 years ago
  50. 51629c2 Add a caveat about boundary conditions and RE concatenation, so that the by Fred Drake · 23 years ago
  51. f90490e Move away from apply() to using extended call syntax for some example by Fred Drake · 23 years ago
  52. 044bb4d Explain that __init__() methods do not get to return values. by Fred Drake · 23 years ago
  53. 388f37e Add anentry for the distutils.sysconfig module docs. by Fred Drake · 23 years ago
  54. ab70b38 Update some incorrect comments about the bdist commands that exist. by Fred Drake · 23 years ago
  55. 25376c4 Documentation for the distutils.sysconfig module. by Fred Drake · 23 years ago
  56. 905dc55 Cleaned up the description of readline.set_completer(). by Fred Drake · 23 years ago
  57. 236ddd6 Added more names. by Fred Drake · 23 years ago
  58. 20c9491 Minor re-wording in the exaplantion of sequence comparisons. by Fred Drake · 23 years ago
  59. e74f8de Added an example of a string value for the replacement parameter to by Fred Drake · 23 years ago
  60. 630a63c Fix description of buffer_info(), and add a note that there is a better way... by Fred Drake · 23 years ago
  61. 7770767 Move C-level changes into a section of their own by Andrew M. Kuchling · 23 years ago
  62. f4ccf58 Rewrite MBCS paragraph following MH's suggestions, and credit him by Andrew M. Kuchling · 23 years ago
  63. 43211ec Make some adjustments to the markup, and fix up some style-guide issues. by Fred Drake · 23 years ago
  64. 66b6e19 Patch #416224: add readline completion to cmd.Cmd. by Martin v. Löwis · 23 years ago
  65. 54f6509 Typo fix. by Greg Ward · 23 years ago
  66. 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 23 years ago
  67. 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
  68. 41d7d58 trivial rewording in footnote 5. by Skip Montanaro · 23 years ago
  69. d61e3ea Add entry for the new distutils section. by Fred Drake · 23 years ago
  70. 4fefcc3 Overview comments for the distutils package, with links to the distutils by Fred Drake · 23 years ago
  71. f1b3de8 Add labels to all \section and \subsection headings for use in references. by Fred Drake · 23 years ago
  72. c547b46 Be more specific about corner cases in the description of the $ RE syntax, by Fred Drake · 23 years ago
  73. 6fd3b22 When explaining the enterabs() method, using the modern spelling of apply(), by Fred Drake · 23 years ago
  74. 6fdb90c Remove self-reference from the anydbm module. This closes SF patch #443788. by Fred Drake · 23 years ago
  75. 8a2adcf Typo: Added missing "if". This is part of SF patch #442788. by Fred Drake · 23 years ago
  76. c046e97 Add StopIteration to the list of exceptions *not* derived from StandardError. by Fred Drake · 23 years ago
  77. 63bc2e0 Convert the use of apply(f, args) to the new spelling: f(*args). by Fred Drake · 23 years ago
  78. 3332778 Corrected a section reference (title was wrong). by Fred Drake · 23 years ago
  79. 88fdaa7 Typo: PyArgs_ParseTuple --> PyArg_ParseTuple by Fred Drake · 23 years ago
  80. 6d98855 Added information on Py_BuildValue(). by Fred Drake · 23 years ago
  81. f69868f Add a missing "\" to the markup. by Fred Drake · 23 years ago
  82. 960fdf9 Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase by Fred Drake · 23 years ago
  83. a6d2a04 More Unicode corrections from MAL to match a post-2.2a1 change by Andrew M. Kuchling · 23 years ago
  84. 9079164 Removed unnecessary section "Unicode literals"; all the discussion is by Fred Drake · 23 years ago
  85. 0825dc2 Fix typo in description of raw strings: "value" --> "valid" by Fred Drake · 23 years ago
  86. a3a1668 apply patch item #416254 by Piers Lauder · 23 years ago
  87. 5120eac Bump release number to 1.00, while I'm at it by Andrew M. Kuchling · 23 years ago
  88. acd32d3 Added function xml.sax.saxutils.quoteattr(). by Fred Drake · 23 years ago
  89. ab01087 Revise the Unicode section after getting comments from MAL, GvR, and others. by Andrew M. Kuchling · 23 years ago
  90. 53d285a Remove some false statements. by Fred Drake · 23 years ago
  91. f5fec3c Fill out the Unicode section, somewhat uncertainly by Andrew M. Kuchling · 23 years ago
  92. 8cfa905 Finish the "Other changes" section by Andrew M. Kuchling · 23 years ago
  93. 28bafb8 Fix a few typos by Andrew M. Kuchling · 23 years ago
  94. b39fa8a Remove note about this being a draft document. by Andrew M. Kuchling · 23 years ago
  95. 5afb5e5 Look to the future: bump the version number. by Fred Drake · 23 years ago
  96. 413bfb7 2.2a1 is out; look to the future. by Fred Drake · 23 years ago
  97. cb417c0 Ignore all .tar files in the top directory; we're about to generate by Fred Drake · 23 years ago
  98. 6c29926 Lots of small updates, some long overdue. by Fred Drake · 23 years ago
  99. 0181552 Add a more substantial example startup file for the interactive shell; by Fred Drake · 23 years ago
  100. 1ca78b6 Change the command lines to use a similar "phrasing" to that used in the by Fred Drake · 23 years ago