1. 2872e8a Do not rebuild html-$(RELEASE).tar every time we need to use it. by Fred Drake · 23 years ago
  2. c93cf67 Bump version number. by Fred Drake · 23 years ago
  3. 05a73b1 Update link to the PyOpenGL project in the "gl" module docs. by Fred Drake · 23 years ago
  4. 00bb329 Document the built-in iter() function. by Fred Drake · 23 years ago
  5. 7feae2d Bump version number. by Fred Drake · 23 years ago
  6. a20c265 Added an additional link to NIST information on secure hashing. by Fred Drake · 23 years ago
  7. ba5c41d Clarified the interaction between string literals and continuation lines. by Fred Drake · 23 years ago
  8. 8b09f49 Make the examples for "Default Argument Values" more presentable and by Fred Drake · 23 years ago
  9. 9c75ff7 Fix parameter for PyInt_Check(). by Fred Drake · 23 years ago
  10. f8d7a5d Document the PyMethod_* type object, functions, and macros. by Fred Drake · 23 years ago
  11. 396ca57 Document the rule that Python.h must be included before any standard by Fred Drake · 23 years ago
  12. 9b88b4c Do not #include <stdio.h> since Python.h already does that. by Fred Drake · 23 years ago
  13. adaca02 Use the standard argument convention for main(), and conform to the by Fred Drake · 23 years ago
  14. 4d17b30 Several updates to cover omissions noted by Rich Salz. by Fred Drake · 23 years ago
  15. f5072b9 Document the "unixfrom" attribute of the rfc822.Message class. by Fred Drake · 23 years ago
  16. b0162f9 Patch #416079: fix the debug string output when receiving telnet commands. by Martin v. Löwis · 23 years ago
  17. bb5a465 typo... by Skip Montanaro · 23 years ago
  18. 7c82a3e0 Patch #449815: Set filesystemencoding based on CODESET. by Martin v. Löwis · 23 years ago
  19. 2f0047a Note some changes that I need to write about by Andrew M. Kuchling · 23 years ago
  20. 44f8696 Patch #428326: New class threading.Timer. by Martin v. Löwis · 23 years ago
  21. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  22. 33a3b63 Correction: the Borland C port isn't fully operational yet by Andrew M. Kuchling · 23 years ago
  23. 757f780 Add more detail to the descriptions of the shutil functions. by Fred Drake · 23 years ago
  24. c05fc7d Added documentation for sys.maxunicode and sys.warnoptions. by Fred Drake · 23 years ago
  25. 32f453e New restriction on pow(x, y, z): If z is not None, x and y must be of by Tim Peters · 23 years ago
  26. b866770 Move the long minidom example to a separate file; \verbatiminput does the by Fred Drake · 23 years ago
  27. 481cf2c Added the "Host" header to the "GET" example. This closes SF bug #457100. by Fred Drake · 23 years ago
  28. 0e03f58 Add Jack Jansen's explanation of the MacOS X changes by Andrew M. Kuchling · 23 years ago
  29. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  30. 55cdc88 Update documentation for GC API. Closes SF patch #421893. by Neil Schemenauer · 23 years ago
  31. 3c0fc84 Update the links to the FIPS document that defines the Secure Hash by Fred Drake · 23 years ago
  32. 6923234 Add a new function imp.lock_held(), and use it to skip test_threaded_import by Tim Peters · 23 years ago
  33. f9dc043 Fix a minor markup typo. by Fred Drake · 23 years ago
  34. da21ce3 On Fred's suggestion, convert sprintf() examples to use by Barry Warsaw · 23 years ago
  35. 0ab31b8 Add METH_O and METH_NOARGS change by Andrew M. Kuchling · 23 years ago
  36. b5f17f2 Revise comments about TeX & LaTeX for accuracy. This closes SF bug #456222. by Fred Drake · 23 years ago
  37. d800cff Added explanation that [...] * n generates shallow copies of [...], so by Fred Drake · 23 years ago
  38. 5cb29a4 Fix a number of minor markup errors, and improve the consistency a bit. by Fred Drake · 23 years ago
  39. 46ccd1d Plant a mention in the description of backreferences of the fact that by Eric S. Raymond · 23 years ago
  40. 8c64a54 Refcount info for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 23 years ago
  41. c86aa57 Documentation for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 23 years ago
  42. 53da317 Docs for the PEP 264 changes. by Michael W. Hudson · 23 years ago
  43. 88e0b5b SF patch #454553 by Walter Dörwald: auto-guess content-type header for ftp urls. by Guido van Rossum · 23 years ago
  44. 0f10f84 indicate that mktime is platform-dependent. See SF bug 434143. by Skip Montanaro · 23 years ago
  45. 5ff41d1 indicate that the years for which the calendar function will work are by Skip Montanaro · 23 years ago
  46. 16bb419 New \grammartoken markup, similar to \token but allowed everywhere. by Fred Drake · 23 years ago
  47. 2a274a7 Add another name. by Fred Drake · 23 years ago
  48. cc8f44b Split "Extending & Embedding" into separate files, one per chapter. by Fred Drake · 23 years ago
  49. 31d833d Added documentation for BoundedSemaphore(), contributed by Skip Montanaro. by Fred Drake · 23 years ago
  50. 0e40c3d Document PyTuple_GET_SIZE(), removing confusing sentence from PyDict_Copy() by Fred Drake · 23 years ago
  51. 29bb115 Clean up some argument profiles, enrich the docstring. by Eric S. Raymond · 23 years ago
  52. dbec7d2 Improve Windows time.clock() blurb; was missing return type and unit. by Tim Peters · 23 years ago
  53. b60f2d0 Framework code for compilerlike scripts. by Eric S. Raymond · 23 years ago
  54. dbfe5e8 Document that uu.decode() will always raise a uu.Error if out_file by Barry Warsaw · 23 years ago
  55. 2dc0794 Make sure that ampersand escaping is still performed on the contents of by Fred Drake · 23 years ago
  56. cb19976 fix_font(): Instead of using a long if/elsif cluster, use a bloody by Fred Drake · 23 years ago
  57. 457c419 Fix typo reported by Joonas Paalasmaa: dada-->data by Fred Drake · 23 years ago
  58. 739282d Re-write the description of the os.spawn*() functions, and cover the by Fred Drake · 23 years ago
  59. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  60. ce1650f A large contribution from Dave Kuhlman describing what each of the slots by Fred Drake · 23 years ago
  61. 8773176 Dave Kuhlman has contributed a nice improvement to the "Defining New Types" by Fred Drake · 23 years ago
  62. 94a7eba Note addition of cleanfuture.py by Andrew M. Kuchling · 23 years ago
  63. ce575ba Fix a minor typo and mark an exception name that was missed. by Fred Drake · 23 years ago
  64. c0cf726 Add material about the "r" and "u" prefixes for string literals; should by Fred Drake · 23 years ago
  65. 0cac5f6 Added some examples of table markup. by Fred Drake · 23 years ago
  66. 3e2aca4 Add information about __floordiv__() and __truediv__() methods for by Fred Drake · 23 years ago
  67. d3ba10f Clarify the prompt in an example. This closes SF bug #450633. by Fred Drake · 23 years ago
  68. 5ef99a0 Describe the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  69. 680cabb Add "exceptions" to the list of fundamental modules created by Py_Initialize(). by Fred Drake · 23 years ago
  70. 280f725 Insert omitted "the". by Fred Drake · 23 years ago
  71. bf781a9 Add the smtpd module to the list of undocumented modules; Barry needs to by Fred Drake · 23 years ago
  72. 6943a29 David Goodger <dgoodger@atsautomation.com>: by Fred Drake · 23 years ago
  73. 84e58ab For the escape() function, added a reference to the quoteattrs() function by Fred Drake · 23 years ago
  74. 9e9c135 Add section on PEP 238 changes by Andrew M. Kuchling · 23 years ago
  75. 1cf0f17 Add a note that the quoteattr() function is useful for HTML and SGML by Fred Drake · 23 years ago
  76. 11ee902 Added documentation for PyDict_Update() and PyDict_Merge(). by Fred Drake · 23 years ago
  77. 1cb560a Do more to be compatible with Windows/CygWin. Make error messages more by Fred Drake · 23 years ago
  78. 9443dc3 Remove the use of the "cat" program. This improves portability to non-Unix by Fred Drake · 23 years ago
  79. 8a7b59e Added this LaTeX style file to the package since not all LaTeX installations by Fred Drake · 23 years ago
  80. d635e3c Added a warning about reference cycles and memory consumption to the by Fred Drake · 23 years ago
  81. 6d8d72b Usage fix, problem reported by Keith Briggs. by Fred Drake · 23 years ago
  82. e89659c Added documentation for the new rich comparison support. by Fred Drake · 23 years ago
  83. 024ef6f Remove the bogus flags parameter from the PyFile_WriteString() signature; by Fred Drake · 23 years ago
  84. 9b75dca Expose nl_langinfo through locale where available. by Martin v. Löwis · 23 years ago
  85. 8cc965c Patch #448474: Add support for tell() and seek() to gzip.GzipFile. by Martin v. Löwis · 23 years ago
  86. 0197858 Added documentation for PyNumber_*FloorDivide(), PyNumber_*TrueDivide(), by Fred Drake · 23 years ago
  87. 03590c6 Reference counting information for PyNumber_*FloorDivide() and by Fred Drake · 23 years ago
  88. e54acfd Add option to push the development docs to SF without announcing, for by Fred Drake · 23 years ago
  89. ecab001 More names.... by Fred Drake · 23 years ago
  90. 3a5ec57 Clean up some of the markup here -- be more consistent in the use of by Fred Drake · 23 years ago
  91. a7d608d "Thin" version of floor division docs: add // to the list of operators by Fred Drake · 23 years ago
  92. 8c69c91 Document two new items by Andrew M. Kuchling · 23 years ago
  93. 5821272 Add a comment on time.time() returning non-decreasing values except when by Fred Drake · 23 years ago
  94. c9908c4 Document IPv6 changes. Contributed by itojun. by Martin v. Löwis · 23 years ago
  95. 5376575 Lots of new text and example code on embedding Python in C, contributed by Fred Drake · 23 years ago
  96. b3cc29b Note that the mimetypes.MimeTypes class was added in Python 2.2. by Fred Drake · 23 years ago
  97. d5efb17 Add documentation for the new aspects of the mimetypes module. by Fred Drake · 23 years ago
  98. d86038d Apply the new \mailheader macro where appropriate, and fix a few small by Fred Drake · 23 years ago
  99. 7eac0cb Define the \mailheader macro and document conventions for using it. by Fred Drake · 23 years ago
  100. 30cf118 Minor markup nits and slight style-guide conformance changes. by Fred Drake · 23 years ago