diff options
author | Fred Drake <fdrake@acm.org> | 1999-02-22 14:55:46 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-02-22 14:55:46 (GMT) |
commit | 9226d8e8a86abbb3733a5aa88f7994ef6516aa87 (patch) | |
tree | d6e84a1066cfb9a4d03738f2ef9bc9303eb3488f /Doc/ext | |
parent | 7d9b13325dcda7d2d4c4b4ede5f779b0eadbde1c (diff) | |
download | cpython-9226d8e8a86abbb3733a5aa88f7994ef6516aa87.zip cpython-9226d8e8a86abbb3733a5aa88f7994ef6516aa87.tar.gz cpython-9226d8e8a86abbb3733a5aa88f7994ef6516aa87.tar.bz2 |
Removed "This will be discussed later." where it's not. Reported by
Clay Spence <cspence@sarnoff.com>; see entry in ../TODO.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 4bfff24..274d0a4 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -143,10 +143,10 @@ passed to the C function. The C function always has two arguments, conventionally named \var{self} and \var{args}. The \var{self} argument is only used when the C function implements a -built-in method. This will be discussed later. In the example, -\var{self} will always be a \NULL{} pointer, since we are defining -a function, not a method. (This is done so that the interpreter -doesn't have to understand two different types of C functions.) +built-in method, not a function. In the example, \var{self} will +always be a \NULL{} pointer, since we are defining a function, not a +method. (This is done so that the interpreter doesn't have to +understand two different types of C functions.) The \var{args} argument will be a pointer to a Python tuple object containing the arguments. Each item of the tuple corresponds to an |