diff options
author | Fred Drake <fdrake@acm.org> | 2001-03-19 04:19:56 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-03-19 04:19:56 (GMT) |
commit | f531ad698cc3ab00ed6d432c98dda59a2081a9f0 (patch) | |
tree | 3345b1f2591afd7d41d68b59bd6055696828997c /Doc/ext | |
parent | 9e6f278fc17671617dd9f005f403ec61f01d567a (diff) | |
download | cpython-f531ad698cc3ab00ed6d432c98dda59a2081a9f0.zip cpython-f531ad698cc3ab00ed6d432c98dda59a2081a9f0.tar.gz cpython-f531ad698cc3ab00ed6d432c98dda59a2081a9f0.tar.bz2 |
Markup nit: For the Python documents, we use \empt instead of \textit.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 2708d52..446802f 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -1883,7 +1883,7 @@ noddy_new_noddy(PyObject* self, PyObject* args) This is in fact just a regular module function, as described in the last chapter. The reason it gets special mention is that this is where we create our Noddy object. Defining PyTypeObject structures is -all very well, but if there's no way to actually \textit{create} one +all very well, but if there's no way to actually \emph{create} one of the wretched things it is not going to do anyone much good. Almost always, you create objects with a call of the form: |