1. b084017 Fix documentation for PyMarshal_WriteObjectToFile() and by Fred Drake · 23 years ago
  2. a0c5e9f Clean up descriptions of PyObject_RichCompare() and PyObject_RichCompareBool() by Fred Drake · 23 years ago
  3. 178153f Add documentation for PyObject_RichCompare() and PyObject_RichCompareBool(), by Fred Drake · 23 years ago
  4. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 23 years ago
  5. 9788384 Explain that tp_basicsize must provide alignment for the items. by Guido van Rossum · 23 years ago
  6. ffb294b Add refcount information for PySequence_ITEM(). by Fred Drake · 23 years ago
  7. 86228e4 Add version annotation for PySequence_ITEM(). by Fred Drake · 23 years ago
  8. 01f94bd Patch #552433: Special-case tuples. Avoid sub-type checking for lists. by Martin v. Löwis · 23 years ago
  9. 541703b Typo: whcar_t should be wchar_t. by Thomas Heller · 23 years ago
  10. 432425e Small markup adjustments for consistency. by Fred Drake · 23 years ago
  11. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 23 years ago
  12. 8da4b59 Fix a small mistake and complete some function prototypes. SF Patch #547813. by Thomas Heller · 23 years ago
  13. b957bc3 Clarify the return value of PyObject_IsInstance(). by Fred Drake · 23 years ago
  14. 8d95ca4 Add text on tp_as_buffer that refers tothe section that covers the topic. by Fred Drake · 23 years ago
  15. 121460d Minor wording change. by Fred Drake · 23 years ago
  16. 9ad70f9 Add more text from Guido on the type structure fields. Small additional changes. by Fred Drake · 23 years ago
  17. 0e0b618 Add documentation for PyObject_Call(). by Fred Drake · 23 years ago
  18. 188ecd1 Integrated more text from Guido. by Fred Drake · 23 years ago
  19. 4d2a95d Integrate a bunch of new text from Guido. by Fred Drake · 23 years ago
  20. f495ef7 Warn people away from PyModule_GetDict(), but not too strongly. by Fred Drake · 23 years ago
  21. 28de8d4 Add a (very) simple description of PyType_Ready(). by Fred Drake · 23 years ago
  22. e3c764b Document PyType_CheckExact(), PyType_IS_GC(). by Fred Drake · 23 years ago
  23. 4d61775 Started filling in the information about some of the basic types and macros by Fred Drake · 23 years ago
  24. 375e302 Update to use the new \csimplemacro macro by Fred Drake · 23 years ago
  25. 87bbdd3 Minor clarification about what's actually promised for PyMem_Malloc(0). by Tim Peters · 23 years ago
  26. 68304cc Move reference material on PyArg_Parse*() out of the Extending & Embedding by Fred Drake · 23 years ago
  27. 243ea71 Correct the descriptions of the PyObject_As*Buffer() return values. by Fred Drake · 23 years ago
  28. 7bf9715 Introduce two new flag bits that can be set in a PyMethodDef method by Fred Drake · 23 years ago
  29. 9e38c10 fix a typo in PyErr_Format table and add row for 'p' format char by Skip Montanaro · 23 years ago
  30. 1941528 Fix example for PyErr_SetFromErrno() (need to pass exception type). by Neil Schemenauer · 23 years ago
  31. 6ccdccd Add a note that Py_None needs the same reference count treatment as any by Fred Drake · 23 years ago
  32. 314bae5 Documentation for PyObject_GetIter(), contributed by Greg Chapman by Fred Drake · 23 years ago
  33. 8371e84 Correct the refcount information for the PyWeakref_GetObject() function. by Fred Drake · 23 years ago
  34. ea3ceaa PyDict_Next: update doc to indicate that pkey and pvalue return values are by Skip Montanaro · 24 years ago
  35. a23bc42 add missing return value info for PyDict_DelItem by Skip Montanaro · 24 years ago
  36. 8b8fe28 Close an improperly-closed verbatim environment. This closes SF patch #496215. by Fred Drake · 24 years ago
  37. 54e6294 A number of small adjustments. by Fred Drake · 24 years ago
  38. f582b82 SF bug #491415 PyDict_UpdateFromSeq2() unused by Tim Peters · 24 years ago
  39. 32a3587 Document that PyString_FromString() cannot take NULL as a parameter. by Fred Drake · 24 years ago
  40. 551ffae Clarify that the Python runtime may behave mysteriously when an exception by Fred Drake · 24 years ago
  41. 3570551 Remove most references to __members__ and __methods__, leaving only one pair by Fred Drake · 24 years ago
  42. f07125e PyErr_Format() does not return a new reference; it always returns NULL. by Fred Drake · 24 years ago
  43. 454af89 Update the signature of PyFile_WriteString(). by Fred Drake · 24 years ago
  44. c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 24 years ago
  45. cd8474e Add documentation for the PyCell* APIs. by Fred Drake · 24 years ago
  46. 50ecc15 Add omitted word for clarity. by Fred Drake · 24 years ago
  47. bfeeeee Fix obvious typos. by Thomas Heller · 24 years ago
  48. 94ead57 Added version annotations, remove hard tabs. by Fred Drake · 24 years ago
  49. 89c3a22 Add PyObject_CheckReadBuffer(), which returns true if its argument by Jeremy Hylton · 24 years ago
  50. 1b58bff More refcount information. by Fred Drake · 24 years ago
  51. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 24 years ago
  52. c44e9ec Added docs for PyObject_CallFunctionObArgs() and PyObject_CallMethodObArgs(). by Fred Drake · 24 years ago
  53. 81c7aa2 Added refcount data for PyObject_CallFunctionObArgs() and by Fred Drake · 24 years ago
  54. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 24 years ago
  55. 847c51a Slightly better conformance to the Python C style guide. by Fred Drake · 24 years ago
  56. c84f2c5 Documentation for the new PyArg_UnpackTuple() function. by Fred Drake · 24 years ago
  57. 5bf1ecd Update the description of PyTrace_EXCEPT. by Fred Drake · 24 years ago
  58. 0fae49f Added documentation for the functions listed in marshal.h. by Fred Drake · 24 years ago
  59. 3adf79e Break the Python/C API manual into smaller files by chapter. This manual by Fred Drake · 24 years ago
  60. bf88b68 Add documentation for the public API for weak reference objects. by Fred Drake · 24 years ago
  61. 6f3d826 Expand the documentation of the low-level tracing/profiling interface. by Fred Drake · 24 years ago
  62. e22871e Typo fix. by Greg Ward · 24 years ago
  63. f244b2e Add more signature information and some descriptions for the new APIs by Fred Drake · 24 years ago
  64. 23a78cf Add more reference count information. by Fred Drake · 24 years ago
  65. d61d0d3 Added API information for the PyCallIter_*() and PySeqIter_*() functions. by Fred Drake · 24 years ago
  66. f47d8ef Document all the Py*_CheckExact() functions. by Fred Drake · 24 years ago
  67. 9c75ff7 Fix parameter for PyInt_Check(). by Fred Drake · 24 years ago
  68. f8d7a5d Document the PyMethod_* type object, functions, and macros. by Fred Drake · 24 years ago
  69. 396ca57 Document the rule that Python.h must be included before any standard by Fred Drake · 24 years ago
  70. 7c82a3e0 Patch #449815: Set filesystemencoding based on CODESET. by Martin v. Löwis · 24 years ago
  71. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 24 years ago
  72. 55cdc88 Update documentation for GC API. Closes SF patch #421893. by Neil Schemenauer · 24 years ago
  73. 8c64a54 Refcount info for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 24 years ago
  74. c86aa57 Documentation for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 24 years ago
  75. 0e40c3d Document PyTuple_GET_SIZE(), removing confusing sentence from PyDict_Copy() by Fred Drake · 24 years ago
  76. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 24 years ago
  77. 680cabb Add "exceptions" to the list of fundamental modules created by Py_Initialize(). by Fred Drake · 24 years ago
  78. 11ee902 Added documentation for PyDict_Update() and PyDict_Merge(). by Fred Drake · 24 years ago
  79. 024ef6f Remove the bogus flags parameter from the PyFile_WriteString() signature; by Fred Drake · 24 years ago
  80. 0197858 Added documentation for PyNumber_*FloorDivide(), PyNumber_*TrueDivide(), by Fred Drake · 24 years ago
  81. 03590c6 Reference counting information for PyNumber_*FloorDivide() and by Fred Drake · 24 years ago
  82. f90490e Move away from apply() to using extended call syntax for some example by Fred Drake · 24 years ago
  83. 88fdaa7 Typo: PyArgs_ParseTuple --> PyArg_ParseTuple by Fred Drake · 24 years ago
  84. 6d98855 Added information on Py_BuildValue(). by Fred Drake · 24 years ago
  85. 68db730 Adding what's done of the documentation for the new profiling & by Fred Drake · 24 years ago
  86. 755c23d Oops, one more caret. by Fred Drake · 24 years ago
  87. 377fb1e Fix the markup of the caret charater in a couple of places; LaTeX's by Fred Drake · 24 years ago
  88. fa77487 Move the section on concrete numeric objects before the section on by Fred Drake · 24 years ago
  89. d854831 Corrected the refcount information for PyList_SET_ITEM(). by Fred Drake · 24 years ago
  90. bab2965 Document PyObject_New(), PyObject_NewVar(), PyObject_Init(), by Fred Drake · 24 years ago
  91. e30ac57 Fix for SF bug #436525, reported by Greg Kochanski: by Thomas Wouters · 24 years ago
  92. 8e0c09d More reference count information. by Fred Drake · 24 years ago
  93. 490d34d Move license information to a less annoying location in the document. by Fred Drake · 24 years ago
  94. 00d0cb6 Explained more differences between PyList_SetItem() and PyList_SET_ITEM(). by Fred Drake · 24 years ago
  95. 96a2a80 Users of PySequence_GET_FAST() should get the length of the sequence using by Fred Drake · 24 years ago
  96. b2625eb Removed information on the old third parameter to _PyTuple_Resize(). by Fred Drake · 24 years ago
  97. fac312f Do not start API descriptions with "Does the same, but ..." -- actually by Fred Drake · 24 years ago
  98. 24e6219 Add documentation for Py_Main() and PyThreadState_GetDict(). by Fred Drake · 24 years ago
  99. fc43d00 Typo: "that" --> "than" This closes SF bug #425320. by Fred Drake · 24 years ago
  100. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 24 years ago