1. 396ca57 Document the rule that Python.h must be included before any standard by Fred Drake · 23 years ago
  2. 7c82a3e0 Patch #449815: Set filesystemencoding based on CODESET. by Martin v. Löwis · 23 years ago
  3. 7eea37e At Guido's suggestion, here's a new C API function, PyObject_Dir(), like by Tim Peters · 23 years ago
  4. 55cdc88 Update documentation for GC API. Closes SF patch #421893. by Neil Schemenauer · 23 years ago
  5. c86aa57 Documentation for PyString_FromFormat() and PyString_FromFormatV(). by Barry Warsaw · 23 years ago
  6. 0e40c3d Document PyTuple_GET_SIZE(), removing confusing sentence from PyDict_Copy() by Fred Drake · 23 years ago
  7. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  8. 680cabb Add "exceptions" to the list of fundamental modules created by Py_Initialize(). by Fred Drake · 23 years ago
  9. 11ee902 Added documentation for PyDict_Update() and PyDict_Merge(). by Fred Drake · 23 years ago
  10. 024ef6f Remove the bogus flags parameter from the PyFile_WriteString() signature; by Fred Drake · 23 years ago
  11. 0197858 Added documentation for PyNumber_*FloorDivide(), PyNumber_*TrueDivide(), by Fred Drake · 23 years ago
  12. f90490e Move away from apply() to using extended call syntax for some example by Fred Drake · 23 years ago
  13. 88fdaa7 Typo: PyArgs_ParseTuple --> PyArg_ParseTuple by Fred Drake · 23 years ago
  14. 68db730 Adding what's done of the documentation for the new profiling & by Fred Drake · 23 years ago
  15. 755c23d Oops, one more caret. by Fred Drake · 23 years ago
  16. 377fb1e Fix the markup of the caret charater in a couple of places; LaTeX's by Fred Drake · 23 years ago
  17. fa77487 Move the section on concrete numeric objects before the section on by Fred Drake · 23 years ago
  18. bab2965 Document PyObject_New(), PyObject_NewVar(), PyObject_Init(), by Fred Drake · 23 years ago
  19. e30ac57 Fix for SF bug #436525, reported by Greg Kochanski: by Thomas Wouters · 23 years ago
  20. 490d34d Move license information to a less annoying location in the document. by Fred Drake · 23 years ago
  21. 00d0cb6 Explained more differences between PyList_SetItem() and PyList_SET_ITEM(). by Fred Drake · 23 years ago
  22. 96a2a80 Users of PySequence_GET_FAST() should get the length of the sequence using by Fred Drake · 23 years ago
  23. fac312f Do not start API descriptions with "Does the same, but ..." -- actually by Fred Drake · 23 years ago
  24. 24e6219 Add documentation for Py_Main() and PyThreadState_GetDict(). by Fred Drake · 23 years ago
  25. fc43d00 Typo: "that" --> "than" This closes SF bug #425320. by Fred Drake · 23 years ago
  26. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 23 years ago
  27. a8e0827 Hmm... better add a version annotation for the Iterator Protocol section. by Fred Drake · 23 years ago
  28. dbcaeda Added documentation for PyIter_Check() and PyIter_Next(). by Fred Drake · 23 years ago
  29. 8155e0e This patch originated from an idea by Martin v. Loewis who submitted a by Marc-André Lemburg · 23 years ago
  30. 8d00a0f Michael Hudson: by Fred Drake · 23 years ago
  31. d20d8b3 Work around the conversion of ">>" and "<<" to guillemets. Reported by Ping. by Fred Drake · 23 years ago
  32. 4d4d003 Correct the documentation for getreadbufferproc and getwritebufferproc. by Greg Stein · 23 years ago
  33. c6a3cb4 Document PySequence_Size(), and describe PySequence_Length() as simply an by Fred Drake · 23 years ago
  34. 58c8f9f Added documentation for PyObject_IsInstance() and PyObject_IsSubclass(). by Fred Drake · 23 years ago
  35. 8f6df46 Strengthen the constraints on calling PyObject_GC_Fini(). by Fred Drake · 23 years ago
  36. e28d8ae Be more clear about the specific rules for supporting the cyclic GC in an by Fred Drake · 23 years ago
  37. c392b57 Integrated an expanded version of some text from Neil Schemenauer about by Fred Drake · 23 years ago
  38. 83e01bf Finally fill in the documentation for the PyDict_Next() function. It is by Fred Drake · 23 years ago
  39. 1874c8f Document PyErr_WarnExplicit(). by Guido van Rossum · 23 years ago
  40. a05460c PyTuple_*() functions take PyObject* parameters, not PyTupleObject* values. by Fred Drake · 23 years ago
  41. f0e08ef Remove an now-false statement about there being only one type flag defined. by Fred Drake · 24 years ago
  42. 5838d0f Document the PyInstance_*() functions and data. by Fred Drake · 24 years ago
  43. 5566c1c Fixed a bunch of typos caught by Gilles Civario. by Fred Drake · 24 years ago
  44. a544ea2 Undoing the whitespace patches which sneaked into the earlier patch. by Marc-André Lemburg · 24 years ago
  45. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  46. 316ef7c Markup nit: Command line options should be marked with \programopt. by Fred Drake · 24 years ago
  47. 3dbb406 Document Pyerr_Warn(). by Guido van Rossum · 24 years ago
  48. 6b3f3f2 In the first discussion showing how to handle exceptions from C, make the by Fred Drake · 24 years ago
  49. ee814bf Added documentation for the Py_InitModule*() family of functions. by Fred Drake · 24 years ago
  50. 8902442 Added exception to the rule that the buffer returned by PyString_AsString() by Fred Drake · 24 years ago
  51. 89fb035 For PyErr_Format(), note that the exception parameter can be a string or by Fred Drake · 24 years ago
  52. 5d64421 Fix a couple of places where the descriptions of *_GET_SIZE() macros said by Fred Drake · 24 years ago
  53. 410cb6b The _PyTuple_Resize() last_is_sticky flag must now always be false. by Neil Schemenauer · 24 years ago
  54. ffe58ca Reversely --> Conversely by Fred Drake · 24 years ago
  55. 0b71cea Note that including Python.h includes limits.h when available. by Fred Drake · 24 years ago
  56. 891150b Added documentation for the new PyModule_*() convenience functions. by Fred Drake · 24 years ago
  57. c0e6c5b PyNumber_Coerce() returns an int, not a PyObject *. by Fred Drake · 24 years ago
  58. ed773ef Include the new text on reporting bugs in a few useful places. by Fred Drake · 24 years ago
  59. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  60. c96ec6e Document new APIs PyOS_getsig() and PyOS_setsig(). by Guido van Rossum · 24 years ago
  61. d5d0435 Use \shortversion in a number of places. by Fred Drake · 24 years ago
  62. 933f0c3 Avoid reference to specific versions of Python where possible. by Fred Drake · 24 years ago
  63. 7740a01 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  64. f913e54 Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>: by Fred Drake · 24 years ago
  65. 81cccb7 Added documentation for PySequence_Fast() and PySequence_Fast_GET_ITEM(). by Fred Drake · 24 years ago
  66. 57a5932 Update documentation for PyErr_Format, because the function has changed. by Moshe Zadka · 24 years ago
  67. e0d9a83 Document PyImport_AppendInittab(), PyImport_ExtendInittab(), and by Fred Drake · 24 years ago
  68. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  69. 17e6343 Document PyOS_CheckStack(). Fix a couple of really minor markup nits. by Fred Drake · 24 years ago
  70. 510d08b In the section on the "Very High Level Layer", address concerns brought up by Fred Drake · 24 years ago
  71. a8d7341 PyRun_InteractiveOne(), PyRun_InteractiveLoop(): Added descriptions. by Fred Drake · 24 years ago
  72. 7d45d34 ANY becomes void, to reflect the requirement for ANSI C. by Fred Drake · 24 years ago
  73. 8c46b30 Document PyObject_AsFileDescriptor by Andrew M. Kuchling · 24 years ago
  74. 5a20b21 Added docs for the new Unicode and string APIs. by Marc-André Lemburg · 24 years ago
  75. ae96aab Marc-Andre Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  76. e06f0f9 Uncomment some additions from Vladimir pertinent to 2.0 but not 1.5.2. by Fred Drake · 24 years ago
  77. d04038d Update comments relating to the removal of the -X option and of string by Fred Drake · 24 years ago
  78. cabbc3b Added documentation for PyOS_AfterFork(). by Fred Drake · 24 years ago
  79. 1d15869 Markup consistency nits. by Fred Drake · 24 years ago
  80. 992fe5a Updates from Marc-Andre Lemburg <mal@leburg.com> for the Unicode support. by Fred Drake · 24 years ago
  81. a8455ab Documented PySequence_List() and PySequence_Tuple(). by Fred Drake · 24 years ago
  82. 7357770 Yet another markup nit: functions that are part of the Python/C API by Fred Drake · 24 years ago
  83. 37f4156 PyErr_Format(): by Fred Drake · 24 years ago
  84. 98605b5 document PyErr_Format by Jeremy Hylton · 24 years ago
  85. a4cd261 Marc-Andre Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  86. 659ebfa Merge in changes from the 1.5.2p2 release. by Fred Drake · 24 years ago
  87. ddc6c27 Improve explanation of reference counts for PyString_Concat(). by Fred Drake · 24 years ago
  88. a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 24 years ago
  89. 310ee61 Missed a couple of program options that had been marked by \code. by Fred Drake · 25 years ago
  90. be48646 Use \citetitle and \programopt as appropriate. by Fred Drake · 25 years ago
  91. c924b8d Clarified start parameter to Py_CompileString, documented by Fred Drake · 25 years ago
  92. 58c5a2a Started documentation on buffer objects & types. Very preliminary. by Fred Drake · 25 years ago
  93. 32bc45f Removed PyMapping_Clear() -- it was wishful thinking and serves no by Guido van Rossum · 25 years ago
  94. dab4468 PyCObject_FromVoidPtr(): Clarify that the destr function will only be by Fred Drake · 25 years ago
  95. 0041a94 Fill in a few holes in the "Very High Level" chapter. by Fred Drake · 25 years ago
  96. 127ed0a Updated list of standard exceptions in section 4.1. by Fred Drake · 25 years ago
  97. 66b989c Be explicit about the reference count of the original value of the by Fred Drake · 25 years ago
  98. efd146c Markup nits. by Fred Drake · 25 years ago
  99. d1dbf63 Header for PyObject_DelItem() mentioned non-existing 3rd argument. by Guido van Rossum · 26 years ago
  100. a096a2e Warn that AddModule doesn't import the module. by Guido van Rossum · 26 years ago