- f350160 Fix spacing markup and other sundries. by Raymond Hettinger · 21 years ago
- a26c16c fix \NULL with following space and no {} (two instances) by Fred Drake · 21 years ago
- f17d65d SF patch#786531 'the the' typo. Contributed by George Yoshida by Raymond Hettinger · 21 years ago
- 901a41e normalize markup for consistency by Fred Drake · 21 years ago
- 6891cd3 A few minor improvements by Barry Warsaw · 21 years ago
- 6c71091 Rewrote the docs for supporting cyclic garbage collection to reflect by Jim Fulton · 21 years ago
- 18a6be9 Added tests for sample modules. by Jim Fulton · 21 years ago
- f0e38d1 Added s setup module to make it easier to test the sample modules. by Jim Fulton · 21 years ago
- 7050e92 Fixed bug in implementation of tp_init function. It should be an int by Jim Fulton · 21 years ago
- 4b59f91 Changed the assignment of PyType_GenericNew to tp_new slot. Now do by Jim Fulton · 21 years ago
- db6a569 Changed the assignment of PyType_GenericNew to tp_new slot. Now do by Jim Fulton · 21 years ago
- 8fb665a Fix ref counts in initialization code. by Raymond Hettinger · 21 years ago
- f9c2eda Fix missing parethesis. by Raymond Hettinger · 21 years ago
- 047c54b Missing parenthesis. by Raymond Hettinger · 22 years ago
- 1f32556 Added some missing PyObject* casts in the deallocators. by Jim Fulton · 22 years ago
- a24d73d Added a missing PyObject* cast to the dealloc examples. by Jim Fulton · 22 years ago
- aea763b Removed reference to the out-of-date (and not very useful) by Jim Fulton · 22 years ago
- d2eadc6 Updated simple example. This should have been checked in the other by Jim Fulton · 22 years ago
- 3ff5bb2 Fixed small typo Pointed out by Michael Hudson. by Jim Fulton · 22 years ago
- 83cedcf Fixed a typo in an example dealloc routine that calls it's "self" by Jim Fulton · 22 years ago
- aed0a4a Rewrote the basic section of the chapter on defining new types. by Jim Fulton · 22 years ago
- 241c2e9 Remove another lie. by Michael W. Hudson · 22 years ago
- d4fee28 Rewrite awkward/ungrammatical sentence. Typo fix. by Greg Ward · 22 years ago
- fdf65d9 Grammatical fix: change possessive "it's" to "its". by Greg Ward · 22 years ago
- 3ebf56c Two more typo fixes. by Greg Ward · 22 years ago
- 1d5d8cf Typo fix. by Greg Ward · 22 years ago
- 0f30dbd Fix SF # 626275, missing DECREF's in embedding example by Neal Norwitz · 22 years ago
- 75bc8ba Fix SF # 646578, Documentation Typo by Neal Norwitz · 22 years ago
- ae6bf4a Remove unused variable by Neal Norwitz · 22 years ago
- cc6cc5d Fix minor markup nits. by Fred Drake · 22 years ago
- 373198e Fix peculiar (and ungrammatical) wording in an example program. by Greg Ward · 22 years ago
- 543fb35 Replace DL_EXPORT with PyMODINIT_FUNC by Mark Hammond · 22 years ago
- 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
- 50ceb68 Change staticforward and statichere to just use static. by Fred Drake · 22 years ago
- a3cd9bb Remove now-obsolete staticforward/statichere discussion. by Fred Drake · 22 years ago
- 291e9ee Fix a typo. by Thomas Heller · 22 years ago
- 723f94b Convert the example C code to ANSI rather than K&R. by Fred Drake · 22 years ago
- 6f45eeb Typo fix. by Greg Ward · 22 years ago
- 18ca791 Typo. by Guido van Rossum · 23 years ago
- 4e76555 Fix broken reference, minor clarification. by Fred Drake · 23 years ago
- 742dc77 Typo: build -> built by Fred Drake · 23 years ago
- 9aa97e8 Minor wording changes, plus correct a typo. by Fred Drake · 23 years ago
- c55ae4b Clean up the use of version numbers in filenames; always use an "abstract" by Fred Drake · 23 years ago
- c63042b Move the listing of the type structure, since both the C API reference and by Fred Drake · 23 years ago
- fd92304 Update the type of the tp_free slot. by Fred Drake · 23 years ago
- 63e40a5 Do not use PyModule_GetDict(). by Fred Drake · 23 years ago
- e77e5ef Change example of retrieving & calling a Python function to not use by Fred Drake · 23 years ago
- 292da58 Change the type of the tp_dealloc back to what it really is. by Fred Drake · 23 years ago
- ee48519 Modernize the minimal example of an extension type. by Fred Drake · 23 years ago
- 0babc44 Update the type of tp_dealloc. by Fred Drake · 23 years ago
- 375e302 Update to use the new \csimplemacro macro by Fred Drake · 23 years ago
- 68304cc Move reference material on PyArg_Parse*() out of the Extending & Embedding by Fred Drake · 23 years ago
- 9651198 Remove weird spacing in typeset version of the chapter head. by Fred Drake · 23 years ago
- 103b548 Add a note warning against semicolons following PyObject_HEAD. Minor cleanups. by Fred Drake · 23 years ago
- d764b0a There is no PyArg_ConvertTuple(); call it by the right name. by Fred Drake · 23 years ago
- fe5a538 Use the right types for a couple of fields of the type structure. by Fred Drake · 23 years ago
- 0ffd14c Started updating information about defining attributes on types. by Fred Drake · 23 years ago
- b1af637 Mark a couple of types that had not been marked. by Fred Drake · 23 years ago
- 0f9a34d Added comments for more entries of the type structure in the example by Fred Drake · 23 years ago
- 2ab0a10 The new files included by \verbatiminput in newtypes.tex. by Fred Drake · 23 years ago
- 81b750d Move some of the longer example code to external fragments, and by Fred Drake · 23 years ago
- e9fba91 Added index entries. by Fred Drake · 23 years ago
- 31f8483 Allow a page break in a code longish example. by Fred Drake · 23 years ago
- 5d11747 Describe how to support the iterator protocol in extension types. by Fred Drake · 23 years ago
- 27761f3 Patch #500136: Update Update ext build documentation. 2.2.1 candidate. by Martin v. Löwis · 23 years ago
- 8fbd4a3 That hasn't been my email address for a while! by Michael W. Hudson · 23 years ago
- 3e3eacb Fixed "u#" parser marker to pass through Unicode objects as-is without by Marc-André Lemburg · 23 years ago
- 5f29319 Replace the "Cookbook approach" with the approach documented in by Fred Drake · 23 years ago
- 145b479 Added discussion of protecting against screwing up the exception state in by Fred Drake · 23 years ago
- 44b3f76 More info about the cycle detector. by Guido van Rossum · 23 years ago
- 874c4f0 Trivial spelling repair on new cyclic garbage text. by Tim Peters · 23 years ago
- 024e647 Added more information about reference counting limitations and the cycle by Fred Drake · 23 years ago
- 92024d1 Clarify the description of the creation of an owned reference from an API by Fred Drake · 23 years ago
- 99181ac Add an index entry for the discussion of PyEval_CallObject(). by Fred Drake · 23 years ago
- c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 23 years ago
- ef6373a Exhibit good form in C code: always provide docstrings in method tables, and by Fred Drake · 23 years ago
- 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
- 7a59445 Document required return values -1, 0, 1 for tp_compare handler, as by Guido van Rossum · 23 years ago
- d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
- 3ab0ac7 Remove comment that no longer applies. by Fred Drake · 23 years ago
- 396ca57 Document the rule that Python.h must be included before any standard by Fred Drake · 23 years ago
- 9b88b4c Do not #include <stdio.h> since Python.h already does that. by Fred Drake · 23 years ago
- adaca02 Use the standard argument convention for main(), and conform to the by Fred Drake · 23 years ago
- da21ce3 On Fred's suggestion, convert sprintf() examples to use by Barry Warsaw · 23 years ago
- cc8f44b Split "Extending & Embedding" into separate files, one per chapter. by Fred Drake · 23 years ago
- ce1650f A large contribution from Dave Kuhlman describing what each of the slots by Fred Drake · 23 years ago
- 5376575 Lots of new text and example code on embedding Python in C, contributed by Fred Drake · 23 years ago
- 4f1cd8b Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. by Martin v. Löwis · 23 years ago
- 3332778 Corrected a section reference (title was wrong). by Fred Drake · 23 years ago
- 7a889ce Minor change to match the style guide. by Fred Drake · 23 years ago
- 15e33d8 Fix up a few style nits -- avoid "e.g." and "i.e." -- these make by Fred Drake · 23 years ago
- d5df09c Update to include the license information in a less annoying place. by Fred Drake · 23 years ago
- 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 24 years ago
- f531ad6 Markup nit: For the Python documents, we use \empt instead of \textit. by Fred Drake · 24 years ago
- 93fe96a Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 24 years ago
- 80d4c07 There was a real leak in the "export a C API" example; fix that one. by Fred Drake · 24 years ago
- 0539bfa There is no longer a -X option to the interpreter, so remove the comments by Fred Drake · 24 years ago
- f6a9617 Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
- bcb09fa Worked around bug SF #125880: changed the text of three sections that by Fred Drake · 24 years ago
- 0ac000c Updates to reflect pending changes to the XML conversion process. by Fred Drake · 24 years ago