diff options
author | Raymond Hettinger <python@rcn.com> | 2003-05-20 05:31:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-05-20 05:31:16 (GMT) |
commit | f9c2eda3c1c6ce73375b05fe8e961ff6eb550dd7 (patch) | |
tree | 25799f2001386294db52b98946cb1726118b7d15 /Doc | |
parent | 092b2a97d2f994c1071752d3719dde1efd1fd3ed (diff) | |
download | cpython-f9c2eda3c1c6ce73375b05fe8e961ff6eb550dd7.zip cpython-f9c2eda3c1c6ce73375b05fe8e961ff6eb550dd7.tar.gz cpython-f9c2eda3c1c6ce73375b05fe8e961ff6eb550dd7.tar.bz2 |
Fix missing parethesis.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ext/extending.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ext/extending.tex b/Doc/ext/extending.tex index 2b7963e..0f38e96 100644 --- a/Doc/ext/extending.tex +++ b/Doc/ext/extending.tex @@ -1344,7 +1344,7 @@ import_spam(void) } #endif -#endif /* !defined(Py_SPAMMODULE_H */ +#endif /* !defined(Py_SPAMMODULE_H) */ \end{verbatim} All that a client module must do in order to have access to the |