diff options
author | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-27 15:29:09 (GMT) |
commit | 16a57f6a343d7bacd85e79c3edb64cd832d8a9ac (patch) | |
tree | c277aed5347aa94a08a6b6742f31f56efbc56948 /Doc/c-api | |
parent | d91f8cf779d9ac4c34e3a47a5a6cfe698874c5dd (diff) | |
download | cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.zip cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.gz cpython-16a57f6a343d7bacd85e79c3edb64cd832d8a9ac.tar.bz2 |
Demote warnings to notices where appropriate, following the goal that as few "red box" warnings
should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/intro.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index e8a3fc4..c56000e 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -44,7 +44,7 @@ This implies inclusion of the following standard headers: ``<stdio.h>``, ``<string.h>``, ``<errno.h>``, ``<limits.h>``, and ``<stdlib.h>`` (if available). -.. warning:: +.. note:: Since Python may define some pre-processor definitions which affect the standard headers on some systems, you *must* include :file:`Python.h` before any standard |