1. b8c23fb Fix #1139: PyFile_Encoding really is PyFile_SetEncoding. by Georg Brandl · 17 years ago
  2. 5d30e75 Fix #1122: wrong return type documented for various _Size() functions. by Georg Brandl · 17 years ago
  3. 15eb97b Add missing \versionadded. (backport from rev. 56006) by Georg Brandl · 17 years ago
  4. f8f68fb Backport checkin: by Walter Dörwald · 17 years ago
  5. 82966e5 Backport r54763: repair missing spaces after \UNIX. by Georg Brandl · 17 years ago
  6. fe048e8 Patch #1686451: Fix return type for PySequence_{Count,Index,Fast_GET_SIZE}. by Martin v. Löwis · 17 years ago
  7. bd9d513 Patch #1684834: document some utility C API functions. by Georg Brandl · 17 years ago
  8. ebfcfb0 Bugs #1668032, #1668036, #1669304: clarify behavior of PyMem_Realloc and _Resize. by Georg Brandl · 17 years ago
  9. eb68188 Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. by Georg Brandl · 18 years ago
  10. 0c40ca6 Remove a stray (old) macro name left around (I guess) by Neal Norwitz · 18 years ago
  11. 082f14b Patch #1592072: fix docs for return value of PyErr_CheckSignals. by Georg Brandl · 18 years ago
  12. 1121e73 [Bug #1579796] Wrong syntax for PyDateTime_IMPORT in documentation. Reported by David Faure. by Andrew M. Kuchling · 18 years ago
  13. 0988904 Bug #1546052: clarify that PyString_FromString(AndSize) copies the by Georg Brandl · 18 years ago
  14. e12b9f6 Minor edits by Andrew M. Kuchling · 18 years ago
  15. 1e8feed Typo in tp_clear docs. (backport from rev. 51368) by Georg Brandl · 18 years ago
  16. 595d9b6 Bug #1541682: Fix example in the "Refcount details" API docs. by Georg Brandl · 18 years ago
  17. 4873fb2 Improve markup in PyUnicode_RichCompare. by Georg Brandl · 18 years ago
  18. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  19. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  20. 4643c2f Followup to bug #1069160. by Tim Peters · 18 years ago
  21. 7572f03 ``str`` is now the same object as ``types.StringType``. by Georg Brandl · 18 years ago
  22. 6c223fe Bug #1536828: typo: TypeType should have been StringType. by Georg Brandl · 18 years ago
  23. fbf9699 Fix function name. by Georg Brandl · 18 years ago
  24. 555ac45 Document PyErr_WarnEx. (Bad Neal! No biscuit!) by Andrew M. Kuchling · 18 years ago
  25. 43bae41 Add refcounts for PyErr_WarnEx by Andrew M. Kuchling · 18 years ago
  26. e0d4aec lots of markup nits, most commonly Unix/unix --> \UNIX by Fred Drake · 18 years ago
  27. a40191c [Patch #1490989 from Skip Montanaro] Mention debugging builds in the API documentation. I've changed Skip's patch to point to Misc/SpecialBuilds and fiddled with the markup a bit. by Andrew M. Kuchling · 18 years ago
  28. 653f23c Document the correct return type of PyLong_AsUnsignedLongLongMask. by Thomas Heller · 18 years ago
  29. 69f6168 Bug #805015: doc error in PyUnicode_FromEncodedObject. by Georg Brandl · 18 years ago
  30. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
  31. ec0d6f8 Clarify documentation for bf_getcharbuffer. by Brett Cannon · 18 years ago
  32. d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 18 years ago
  33. e001816 Exception isn't the root of all exception classes anymore. by Georg Brandl · 18 years ago
  34. 485dbd1 Add a x-ref to newer calling APIs. by Georg Brandl · 18 years ago
  35. 9d67d5e Someone seems to just have copy-pasted the docs of by Georg Brandl · 18 years ago
  36. 658d513 PyErr_NewException now accepts a tuple of base classes as its "base" parameter. by Georg Brandl · 18 years ago
  37. e6d9506 Typo repair. by Tim Peters · 18 years ago
  38. 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 18 years ago
  39. b06d28c SF patch #1473132: Improve docs for tp_clear and tp_traverse, by Collin Winter. by Tim Peters · 18 years ago
  40. f25fa6d avoid ugly markup based on the unfortunate conversions of ">>" and "<<" to by Fred Drake · 18 years ago
  41. a71fd71 Documentation bug: PySet_Pop() returns a new reference (because the by Armin Rigo · 18 years ago
  42. 9dea97a fix markup glitch by George Yoshida · 18 years ago
  43. 82972e7 Patch #702933: Undocument PyObject_NEW, PyObject_NEW_VAR, and PyObject_DEL. by Martin v. Löwis · 18 years ago
  44. bb30011 Stop claiming that Py_Finalize releases all memory. Fixes part of #1445210. by Martin v. Löwis · 18 years ago
  45. 0bc2ab9 Patch #837242: id() for large ptr should return a long. by Martin v. Löwis · 18 years ago
  46. 4dce8e4 Bug #1464658: make clear that PyList_GetItem doesn't take negative indices. by Georg Brandl · 18 years ago
  47. c44e14e Fix typos. by Walter Dörwald · 18 years ago
  48. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  49. 66bc4ef fill in refcount information for APIs first documented in Python 2.5 by Fred Drake · 18 years ago
  50. 3e482d9 merge revision 43437 from the release24-maint branch: by Fred Drake · 18 years ago
  51. b6e92c4 Document change made to number of preallocated integers. by Georg Brandl · 18 years ago
  52. 66760f8 Show an example of calling a named set method. by Raymond Hettinger · 18 years ago
  53. 025f14b Move version added tag from PyObject_Length/Size to PyNumber_Index. by Neal Norwitz · 18 years ago
  54. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  55. 54ac294 Document PEP 352 changes. Also added GeneratorExit. by Brett Cannon · 18 years ago
  56. c9066ca Fix warning that texcheck complained about. by Martin v. Löwis · 18 years ago
  57. 1f2dac5 markup glitch (spotted by George Yoshida) by Fredrik Lundh · 18 years ago
  58. 3b19754 Document new Py_ssize_t API. by Martin v. Löwis · 18 years ago
  59. 29fafd8 Make documentation match the implementation. by Martin v. Löwis · 18 years ago
  60. b518d8c Fix casing of function names. by Georg Brandl · 18 years ago
  61. 7d42d3c fix typo by Georg Brandl · 18 years ago
  62. 9b743f5 Bug #1013800: document PyFunction_* functions by Georg Brandl · 18 years ago
  63. 4caeff9 Patch #1415507: clarify docs on reference stealing by Georg Brandl · 18 years ago
  64. 1b67267 Bug #1432350: arrayobject should use PyObject_VAR_HEAD by Georg Brandl · 18 years ago
  65. 118be0c SF#1383115 by Fredrik Lundh · 19 years ago
  66. b04747f Add versionadded info by Neal Norwitz · 19 years ago
  67. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago
  68. f06e30a bug #1281408: make Py_BuildValue work with unsigned longs and long longs by Georg Brandl · 19 years ago
  69. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  70. 98fcaaf SF bug #1323739, C API doc for PySequence_Tuple duplicated by Neal Norwitz · 19 years ago
  71. df4f6e9 Clarify the docs for Py_UNICODE. by Marc-André Lemburg · 19 years ago
  72. d1c1e10 Part of SF patch #1313939: Speedup charmap decoding by extending by Walter Dörwald · 19 years ago
  73. e53475d bug [ 1306449 ] PyString_AsStringAndSize() return value documented wrong by Georg Brandl · 19 years ago
  74. ff52837 fix typo by Georg Brandl · 19 years ago
  75. 99363b6 - Correct PyBool_FromLong's return type and its description. by Georg Brandl · 19 years ago
  76. 7638249 Fix PySet_Pop() notes. by Raymond Hettinger · 19 years ago
  77. 0cbf400 Add info about the set API. by Raymond Hettinger · 19 years ago
  78. 94fedf9 Expand the API notes. by Raymond Hettinger · 19 years ago
  79. 0c230b9 Note that the PyNumber protocol can access most set methods directly. by Raymond Hettinger · 19 years ago
  80. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 19 years ago
  81. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  82. 0e03272 bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated by Georg Brandl · 19 years ago
  83. fb66297 Add a(nother) warning about mixing Py_NewInterpreter and the by Michael W. Hudson · 19 years ago
  84. 7b27907 fix some silly whitespace stuff (must have hit M-q or something?) by Michael W. Hudson · 19 years ago
  85. c493229 Fix grammar (it's -> its). by Neil Schemenauer · 19 years ago
  86. 33ceda8 Function signatures for tp_descr_get and tp_descr_set. by Thomas Heller · 19 years ago
  87. 5bbe6ad Fix name for PyDateTime_FromDateAndTime. by Brett Cannon · 19 years ago
  88. 7706c2d Update references specifying "Macintosh" to mean OS X semantics and not Mac OS by Brett Cannon · 19 years ago
  89. 1400424 Clean up discussion of new C thread idiom (closes SF patch #1031233; modified) by Fred Drake · 20 years ago
  90. 6880431 SF Patch #1093896: miscellaneous doc typos by Raymond Hettinger · 20 years ago
  91. 8ef9b3e SF bug #1082944: Incorrect docs for PyUnicode_TailMatch by Raymond Hettinger · 20 years ago
  92. a9cadcd Correct the handling of 0-termination of PyUnicode_AsWideChar() by Marc-André Lemburg · 20 years ago
  93. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 20 years ago
  94. 975e725 Fix typo in PyDict_Items doc by Nicholas Bastin · 20 years ago
  95. 6965203 SF patch #998993: The UTF-8 and the UTF-16 stateful decoders now support by Walter Dörwald · 20 years ago
  96. 336e85f Patch #900727: Add Py_InitializeEx to allow embedding without signals. by Martin v. Löwis · 20 years ago
  97. f54ac7e Spelling fix by Andrew M. Kuchling · 20 years ago
  98. 4eb1a00 [Patch #1003861 from Dima Dorfman] Fix markup in concrete.tex: by Andrew M. Kuchling · 20 years ago
  99. 672d2ba Use LaTeX markup by Andrew M. Kuchling · 20 years ago
  100. fe80b63 [Bug #991883] Document calling condition by Andrew M. Kuchling · 20 years ago