1. 3d7d372 Whitespace normalization, via reindent.py. by Tim Peters · 20 years ago
  2. 5960d80 s/it's/its/, s/NULL/NULL{}/, where appropriate. by Tim Peters · 20 years ago
  3. eda2930 Formalize that the Py_VISIT macro requires that the tp_traverse by Tim Peters · 20 years ago
  4. 7a0e8bc Updated documentation to: by Jim Fulton · 20 years ago
  5. 289e4cb Changed applicable use of ``char *`` declarations that are passed into by Brett Cannon · 20 years ago
  6. 634893d Mention Py_RETURN_NONE when introducing the idiom of how to have a function by Brett Cannon · 20 years ago
  7. 555a964 Clarify sentence at end of Intermezzo section stating that PyMODINIT_FUNC will by Brett Cannon · 20 years ago
  8. de48307 Added documentation to address SF bug #963246: limitations on multiple by Phillip J. Eby · 20 years ago
  9. 34c4320 Emphasize the requirement that Python.h be included first more strongly. by Fred Drake · 20 years ago
  10. d311f1f SF #894428, fix typo by Neal Norwitz · 20 years ago
  11. 0d8da3a fix some sloppy markup to use \guilabel by Fred Drake · 20 years ago
  12. 2619c9e SF patch #838938: Typos in the docs (Extending/Embedding + Python/C API) by Raymond Hettinger · 21 years ago
  13. ff1f194 Fix the problem addressed by patch by Michael W. Hudson · 21 years ago
  14. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  15. f350160 Fix spacing markup and other sundries. by Raymond Hettinger · 21 years ago
  16. a26c16c fix \NULL with following space and no {} (two instances) by Fred Drake · 21 years ago
  17. f17d65d SF patch#786531 'the the' typo. Contributed by George Yoshida by Raymond Hettinger · 21 years ago
  18. 901a41e normalize markup for consistency by Fred Drake · 21 years ago
  19. 6891cd3 A few minor improvements by Barry Warsaw · 21 years ago
  20. 6c71091 Rewrote the docs for supporting cyclic garbage collection to reflect by Jim Fulton · 21 years ago
  21. 18a6be9 Added tests for sample modules. by Jim Fulton · 21 years ago
  22. f0e38d1 Added s setup module to make it easier to test the sample modules. by Jim Fulton · 21 years ago
  23. 7050e92 Fixed bug in implementation of tp_init function. It should be an int by Jim Fulton · 21 years ago
  24. 4b59f91 Changed the assignment of PyType_GenericNew to tp_new slot. Now do by Jim Fulton · 21 years ago
  25. db6a569 Changed the assignment of PyType_GenericNew to tp_new slot. Now do by Jim Fulton · 21 years ago
  26. 8fb665a Fix ref counts in initialization code. by Raymond Hettinger · 21 years ago
  27. f9c2eda Fix missing parethesis. by Raymond Hettinger · 21 years ago
  28. 047c54b Missing parenthesis. by Raymond Hettinger · 21 years ago
  29. 1f32556 Added some missing PyObject* casts in the deallocators. by Jim Fulton · 21 years ago
  30. a24d73d Added a missing PyObject* cast to the dealloc examples. by Jim Fulton · 21 years ago
  31. aea763b Removed reference to the out-of-date (and not very useful) by Jim Fulton · 21 years ago
  32. d2eadc6 Updated simple example. This should have been checked in the other by Jim Fulton · 21 years ago
  33. 3ff5bb2 Fixed small typo Pointed out by Michael Hudson. by Jim Fulton · 21 years ago
  34. 83cedcf Fixed a typo in an example dealloc routine that calls it's "self" by Jim Fulton · 21 years ago
  35. aed0a4a Rewrote the basic section of the chapter on defining new types. by Jim Fulton · 21 years ago
  36. 241c2e9 Remove another lie. by Michael W. Hudson · 21 years ago
  37. d4fee28 Rewrite awkward/ungrammatical sentence. Typo fix. by Greg Ward · 22 years ago
  38. fdf65d9 Grammatical fix: change possessive "it's" to "its". by Greg Ward · 22 years ago
  39. 3ebf56c Two more typo fixes. by Greg Ward · 22 years ago
  40. 1d5d8cf Typo fix. by Greg Ward · 22 years ago
  41. 0f30dbd Fix SF # 626275, missing DECREF's in embedding example by Neal Norwitz · 22 years ago
  42. 75bc8ba Fix SF # 646578, Documentation Typo by Neal Norwitz · 22 years ago
  43. ae6bf4a Remove unused variable by Neal Norwitz · 22 years ago
  44. cc6cc5d Fix minor markup nits. by Fred Drake · 22 years ago
  45. 373198e Fix peculiar (and ungrammatical) wording in an example program. by Greg Ward · 22 years ago
  46. 543fb35 Replace DL_EXPORT with PyMODINIT_FUNC by Mark Hammond · 22 years ago
  47. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  48. 50ceb68 Change staticforward and statichere to just use static. by Fred Drake · 22 years ago
  49. a3cd9bb Remove now-obsolete staticforward/statichere discussion. by Fred Drake · 22 years ago
  50. 291e9ee Fix a typo. by Thomas Heller · 22 years ago
  51. 723f94b Convert the example C code to ANSI rather than K&R. by Fred Drake · 22 years ago
  52. 6f45eeb Typo fix. by Greg Ward · 22 years ago
  53. 18ca791 Typo. by Guido van Rossum · 22 years ago
  54. 4e76555 Fix broken reference, minor clarification. by Fred Drake · 22 years ago
  55. 742dc77 Typo: build -> built by Fred Drake · 22 years ago
  56. 9aa97e8 Minor wording changes, plus correct a typo. by Fred Drake · 22 years ago
  57. c55ae4b Clean up the use of version numbers in filenames; always use an "abstract" by Fred Drake · 22 years ago
  58. c63042b Move the listing of the type structure, since both the C API reference and by Fred Drake · 22 years ago
  59. fd92304 Update the type of the tp_free slot. by Fred Drake · 22 years ago
  60. 63e40a5 Do not use PyModule_GetDict(). by Fred Drake · 22 years ago
  61. e77e5ef Change example of retrieving & calling a Python function to not use by Fred Drake · 22 years ago
  62. 292da58 Change the type of the tp_dealloc back to what it really is. by Fred Drake · 22 years ago
  63. ee48519 Modernize the minimal example of an extension type. by Fred Drake · 22 years ago
  64. 0babc44 Update the type of tp_dealloc. by Fred Drake · 22 years ago
  65. 375e302 Update to use the new \csimplemacro macro by Fred Drake · 22 years ago
  66. 68304cc Move reference material on PyArg_Parse*() out of the Extending & Embedding by Fred Drake · 22 years ago
  67. 9651198 Remove weird spacing in typeset version of the chapter head. by Fred Drake · 22 years ago
  68. 103b548 Add a note warning against semicolons following PyObject_HEAD. Minor cleanups. by Fred Drake · 22 years ago
  69. d764b0a There is no PyArg_ConvertTuple(); call it by the right name. by Fred Drake · 22 years ago
  70. fe5a538 Use the right types for a couple of fields of the type structure. by Fred Drake · 22 years ago
  71. 0ffd14c Started updating information about defining attributes on types. by Fred Drake · 22 years ago
  72. b1af637 Mark a couple of types that had not been marked. by Fred Drake · 22 years ago
  73. 0f9a34d Added comments for more entries of the type structure in the example by Fred Drake · 22 years ago
  74. 2ab0a10 The new files included by \verbatiminput in newtypes.tex. by Fred Drake · 22 years ago
  75. 81b750d Move some of the longer example code to external fragments, and by Fred Drake · 22 years ago
  76. e9fba91 Added index entries. by Fred Drake · 22 years ago
  77. 31f8483 Allow a page break in a code longish example. by Fred Drake · 22 years ago
  78. 5d11747 Describe how to support the iterator protocol in extension types. by Fred Drake · 22 years ago
  79. 27761f3 Patch #500136: Update Update ext build documentation. 2.2.1 candidate. by Martin v. Löwis · 22 years ago
  80. 8fbd4a3 That hasn't been my email address for a while! by Michael W. Hudson · 22 years ago
  81. 3e3eacb Fixed "u#" parser marker to pass through Unicode objects as-is without by Marc-André Lemburg · 22 years ago
  82. 5f29319 Replace the "Cookbook approach" with the approach documented in by Fred Drake · 23 years ago
  83. 145b479 Added discussion of protecting against screwing up the exception state in by Fred Drake · 23 years ago
  84. 44b3f76 More info about the cycle detector. by Guido van Rossum · 23 years ago
  85. 874c4f0 Trivial spelling repair on new cyclic garbage text. by Tim Peters · 23 years ago
  86. 024e647 Added more information about reference counting limitations and the cycle by Fred Drake · 23 years ago
  87. 92024d1 Clarify the description of the creation of an owned reference from an API by Fred Drake · 23 years ago
  88. 99181ac Add an index entry for the discussion of PyEval_CallObject(). by Fred Drake · 23 years ago
  89. c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 23 years ago
  90. ef6373a Exhibit good form in C code: always provide docstrings in method tables, and by Fred Drake · 23 years ago
  91. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  92. 7a59445 Document required return values -1, 0, 1 for tp_compare handler, as by Guido van Rossum · 23 years ago
  93. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  94. 3ab0ac7 Remove comment that no longer applies. by Fred Drake · 23 years ago
  95. 396ca57 Document the rule that Python.h must be included before any standard by Fred Drake · 23 years ago
  96. 9b88b4c Do not #include <stdio.h> since Python.h already does that. by Fred Drake · 23 years ago
  97. adaca02 Use the standard argument convention for main(), and conform to the by Fred Drake · 23 years ago
  98. da21ce3 On Fred's suggestion, convert sprintf() examples to use by Barry Warsaw · 23 years ago
  99. cc8f44b Split "Extending & Embedding" into separate files, one per chapter. by Fred Drake · 23 years ago
  100. ce1650f A large contribution from Dave Kuhlman describing what each of the slots by Fred Drake · 23 years ago