diff options
author | Georg Brandl <georg@python.org> | 2010-11-23 18:14:57 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-11-23 18:14:57 (GMT) |
commit | 4f13d6145fb01153cee86db9086234178bf30242 (patch) | |
tree | 67845480d70bd35c2f681ad3f94e1ab9bb0ab78d /Doc | |
parent | 57410c12e8918df68c1cfac63c702cb1eac25960 (diff) | |
download | cpython-4f13d6145fb01153cee86db9086234178bf30242.zip cpython-4f13d6145fb01153cee86db9086234178bf30242.tar.gz cpython-4f13d6145fb01153cee86db9086234178bf30242.tar.bz2 |
assert.h is also included. Thanks to Savio Sena.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/intro.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 6fecc61..0c4f816 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -41,8 +41,8 @@ included in your code by the following line:: #include "Python.h" This implies inclusion of the following standard headers: ``<stdio.h>``, -``<string.h>``, ``<errno.h>``, ``<limits.h>``, and ``<stdlib.h>`` (if -available). +``<string.h>``, ``<errno.h>``, ``<limits.h>``, ``<assert.h>`` and ``<stdlib.h>`` +(if available). .. note:: |