1. 5838d0f Document the PyInstance_*() functions and data. by Fred Drake · 25 years ago
  2. 5566c1c Fixed a bunch of typos caught by Gilles Civario. by Fred Drake · 25 years ago
  3. a544ea2 Undoing the whitespace patches which sneaked into the earlier patch. by Marc-André Lemburg · 25 years ago
  4. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 25 years ago
  5. 316ef7c Markup nit: Command line options should be marked with \programopt. by Fred Drake · 25 years ago
  6. 3dbb406 Document Pyerr_Warn(). by Guido van Rossum · 25 years ago
  7. 6b3f3f2 In the first discussion showing how to handle exceptions from C, make the by Fred Drake · 25 years ago
  8. ee814bf Added documentation for the Py_InitModule*() family of functions. by Fred Drake · 25 years ago
  9. 8902442 Added exception to the rule that the buffer returned by PyString_AsString() by Fred Drake · 25 years ago
  10. 89fb035 For PyErr_Format(), note that the exception parameter can be a string or by Fred Drake · 25 years ago
  11. 5d64421 Fix a couple of places where the descriptions of *_GET_SIZE() macros said by Fred Drake · 25 years ago
  12. 410cb6b The _PyTuple_Resize() last_is_sticky flag must now always be false. by Neil Schemenauer · 25 years ago
  13. ffe58ca Reversely --> Conversely by Fred Drake · 25 years ago
  14. 0b71cea Note that including Python.h includes limits.h when available. by Fred Drake · 25 years ago
  15. 891150b Added documentation for the new PyModule_*() convenience functions. by Fred Drake · 25 years ago
  16. c0e6c5b PyNumber_Coerce() returns an int, not a PyObject *. by Fred Drake · 25 years ago
  17. ed773ef Include the new text on reporting bugs in a few useful places. by Fred Drake · 25 years ago
  18. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 25 years ago
  19. c96ec6e Document new APIs PyOS_getsig() and PyOS_setsig(). by Guido van Rossum · 25 years ago
  20. d5d0435 Use \shortversion in a number of places. by Fred Drake · 25 years ago
  21. 933f0c3 Avoid reference to specific versions of Python where possible. by Fred Drake · 25 years ago
  22. 7740a01 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 25 years ago
  23. f913e54 Vladimir Marangozov <Vladimir.Marangozov@inrialpes.fr>: by Fred Drake · 25 years ago
  24. 81cccb7 Added documentation for PySequence_Fast() and PySequence_Fast_GET_ITEM(). by Fred Drake · 25 years ago
  25. 57a5932 Update documentation for PyErr_Format, because the function has changed. by Moshe Zadka · 25 years ago
  26. e0d9a83 Document PyImport_AppendInittab(), PyImport_ExtendInittab(), and by Fred Drake · 25 years ago
  27. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 25 years ago
  28. 17e6343 Document PyOS_CheckStack(). Fix a couple of really minor markup nits. by Fred Drake · 25 years ago
  29. 510d08b In the section on the "Very High Level Layer", address concerns brought up by Fred Drake · 25 years ago
  30. a8d7341 PyRun_InteractiveOne(), PyRun_InteractiveLoop(): Added descriptions. by Fred Drake · 25 years ago
  31. 7d45d34 ANY becomes void, to reflect the requirement for ANSI C. by Fred Drake · 25 years ago
  32. 8c46b30 Document PyObject_AsFileDescriptor by Andrew M. Kuchling · 25 years ago
  33. 5a20b21 Added docs for the new Unicode and string APIs. by Marc-André Lemburg · 25 years ago
  34. ae96aab Marc-Andre Lemburg <mal@lemburg.com>: by Fred Drake · 25 years ago
  35. e06f0f9 Uncomment some additions from Vladimir pertinent to 2.0 but not 1.5.2. by Fred Drake · 25 years ago
  36. d04038d Update comments relating to the removal of the -X option and of string by Fred Drake · 25 years ago
  37. cabbc3b Added documentation for PyOS_AfterFork(). by Fred Drake · 25 years ago
  38. 1d15869 Markup consistency nits. by Fred Drake · 25 years ago
  39. 992fe5a Updates from Marc-Andre Lemburg <mal@leburg.com> for the Unicode support. by Fred Drake · 25 years ago
  40. a8455ab Documented PySequence_List() and PySequence_Tuple(). by Fred Drake · 25 years ago
  41. 7357770 Yet another markup nit: functions that are part of the Python/C API by Fred Drake · 25 years ago
  42. 37f4156 PyErr_Format(): by Fred Drake · 25 years ago
  43. 98605b5 document PyErr_Format by Jeremy Hylton · 25 years ago
  44. a4cd261 Marc-Andre Lemburg <mal@lemburg.com>: by Fred Drake · 25 years ago
  45. 659ebfa Merge in changes from the 1.5.2p2 release. by Fred Drake · 25 years ago
  46. ddc6c27 Improve explanation of reference counts for PyString_Concat(). by Fred Drake · 25 years ago
  47. a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 25 years ago
  48. 310ee61 Missed a couple of program options that had been marked by \code. by Fred Drake · 26 years ago
  49. be48646 Use \citetitle and \programopt as appropriate. by Fred Drake · 26 years ago
  50. c924b8d Clarified start parameter to Py_CompileString, documented by Fred Drake · 26 years ago
  51. 58c5a2a Started documentation on buffer objects & types. Very preliminary. by Fred Drake · 26 years ago
  52. 32bc45f Removed PyMapping_Clear() -- it was wishful thinking and serves no by Guido van Rossum · 26 years ago
  53. dab4468 PyCObject_FromVoidPtr(): Clarify that the destr function will only be by Fred Drake · 26 years ago
  54. 0041a94 Fill in a few holes in the "Very High Level" chapter. by Fred Drake · 26 years ago
  55. 127ed0a Updated list of standard exceptions in section 4.1. by Fred Drake · 26 years ago
  56. 66b989c Be explicit about the reference count of the original value of the by Fred Drake · 27 years ago
  57. efd146c Markup nits. by Fred Drake · 27 years ago
  58. d1dbf63 Header for PyObject_DelItem() mentioned non-existing 3rd argument. by Guido van Rossum · 27 years ago
  59. a096a2e Warn that AddModule doesn't import the module. by Guido van Rossum · 27 years ago
  60. 0a0f11b PyMapping_SetItemString() returns int, not an object. by Guido van Rossum · 27 years ago
  61. ed9dcc1 Clarify that the Python interpreter lock need *not* be held by by Guido van Rossum · 27 years ago
  62. 9f86b66 Update to use a separate page for front matter. by Fred Drake · 27 years ago
  63. a937d14 Fred's right -- we need PyList_SET_ITEM(). by Guido van Rossum · 27 years ago
  64. f8830d1 Convert recent additions to use new, "logical" markup. by Fred Drake · 27 years ago
  65. 4447513 Filled in some more blanks, with the help of Drew Csillag. by Guido van Rossum · 27 years ago
  66. 3c4378b Some patches by Drew Csillag; plus a few of my own uncommitted changes. by Guido van Rossum · 27 years ago
  67. 003d8da Typo: (and often severly limited) -- severely by Fred Drake · 27 years ago
  68. c94d934 In descriptions of Py_GetPrefix() and Py_GetExecPrefix(), make sure the by Fred Drake · 27 years ago
  69. 2de75ec Don't assume that \version expands to the 3-character major.minor number; it by Fred Drake · 27 years ago
  70. 7e9d314 Capitalize "Python" for consistency. by Fred Drake · 27 years ago
  71. c6fa34e Markup consistency & nits. by Fred Drake · 27 years ago
  72. f3aa0e0 Revert the index stuff to work better with LaTeX2HTML. by Fred Drake · 27 years ago
  73. 7d20ffe Adjust the index inclusion for the new index support. by Fred Drake · 27 years ago
  74. 6659c30 Convert LaTeX support to create a new class of documents. HTML generation by Fred Drake · 27 years ago
  75. f39ed67 Added \label{}s for logical addressing. by Fred Drake · 27 years ago
  76. b92dce3 PyFile_FromFile() description: make sure the closing brace for the arguments by Fred Drake · 27 years ago
  77. 7baf3d4 Fixed typo reported by Vladimir Marangozov <Vladimir.Marangozov@imag.fr>. by Fred Drake · 27 years ago
  78. 9d20ac3 Removed various "(New in 1.5a?!)" constructs. Other notes pertaining to by Fred Drake · 28 years ago
  79. 4de05a9 Place C typedef for Py_complex after brief description, to be more consistent by Fred Drake · 28 years ago
  80. 53fb772 Added index enties for the Python built-in functions, where appropriate. by Fred Drake · 28 years ago
  81. e058b4f Lots of nitty-gritty stuff: by Fred Drake · 28 years ago
  82. 2a4646c Remove obsolete pagenumbering / pagestyle cruft. by Fred Drake · 28 years ago
  83. e5bc497 "ASCII" --> "\ASCII{}" by Fred Drake · 28 years ago
  84. e5bf8b2 Reorganized a bit. No changed content. by Fred Drake · 28 years ago
  85. f44617d For sections describing the "Foo Protocol", consistently use the capitalized by Fred Drake · 28 years ago
  86. faa1afe Py_Exit(status) calls exit(status), not exit(0). by Fred Drake · 28 years ago
  87. c6c921a Py_AtExit(): Added brief note about the constraint on cleanup functions not by Fred Drake · 28 years ago
  88. 4d4f9e7 Removed \mytableofcontents; just use \tableofcontents. by Fred Drake · 28 years ago
  89. b0a7873 Consistency: by Fred Drake · 28 years ago
  90. dca8792 Added openright option the the \documentclass{} for each of the manuals. by Fred Drake · 28 years ago
  91. 1f8449a Revise prologue and frontmatter to use latex2e (not in 2.09 compatibility by Fred Drake · 28 years ago
  92. 85a5c52 Descriptions for PyRun_String(), PyRun_File(), and PyRun_CompileString() all by Fred Drake · 28 years ago
  93. 5b8a523 A whole bunch of typos fixed by Andrew Kuchling. by Guido van Rossum · 28 years ago
  94. 580aa8d Several changes, e.g. restructuring of the intro to be closer to what by Guido van Rossum · 28 years ago
  95. 36fbe76 struct _frozen: by Fred Drake · 28 years ago
  96. 9faf4c5 Change title to {Python/C API Reference Manual}; remove \bcode \ecode by Guido van Rossum · 28 years ago
  97. c44d3d6 Done with tread state descriptions. Sigh! by Guido van Rossum · 28 years ago
  98. 42cefd0 Checkpoint. Added docs for the new exception handling APIs and for by Guido van Rossum · 28 years ago
  99. b904629 Fix some badly botched prototypes for PyRun* c.s. by Guido van Rossum · 28 years ago
  100. 5060b3b Consistently change Python-C API to Python/C API; added lots of new by Guido van Rossum · 28 years ago