diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-11 18:00:52 +0000 |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-06-11 18:00:52 +0000 |
commit | 463d0795d3370650cb477f490e49d513b25b1a08 (patch) | |
tree | 21524508469cdf2156140aab632d28ded1284da6 /Include | |
parent | d013afffe62667457848d4b9d0334fd4df35555e (diff) | |
download | cpython-463d0795d3370650cb477f490e49d513b25b1a08.tar.gz |
Correct an incorrect comment about our #include of stddef.h.
(see Doug Evans' comment on python-dev 2008-06-10)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/Python.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/Python.h b/Include/Python.h index c87598950f..1a05116235 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -44,7 +44,7 @@ #include <unistd.h> #endif -/* For uintptr_t, intptr_t */ +/* For size_t? */ #ifdef HAVE_STDDEF_H #include <stddef.h> #endif |