summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
Diffstat (limited to 'Include')
-rw-r--r--Include/Python.h2
-rw-r--r--Include/pgenheaders.h2
-rw-r--r--Include/pymem.h2
-rw-r--r--Include/pyport.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/Include/Python.h b/Include/Python.h
index 17ac374..f9c33d4 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -27,7 +27,7 @@
#include <limits.h>
#endif
-/* config.h may or may not define DL_IMPORT */
+/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
diff --git a/Include/pgenheaders.h b/Include/pgenheaders.h
index 6807c64..20ac2c7 100644
--- a/Include/pgenheaders.h
+++ b/Include/pgenheaders.h
@@ -9,7 +9,7 @@ extern "C" {
#include "pyconfig.h"
-/* config.h may or may not define DL_IMPORT */
+/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
#define DL_IMPORT(RTYPE) RTYPE
#endif
diff --git a/Include/pymem.h b/Include/pymem.h
index 71fc8b5..86a69e4 100644
--- a/Include/pymem.h
+++ b/Include/pymem.h
@@ -140,7 +140,7 @@ extern DL_IMPORT(void) PyMem_Free(void *);
d_malloc(size_t n, char* src_file, unsigned long src_line) c.s.
- In this case, you would define (for example in config.h) :
+ In this case, you would define (for example in pyconfig.h) :
#define PyCore_MALLOC_FUNC d_malloc
...
diff --git a/Include/pyport.h b/Include/pyport.h
index 5767aab..c589ecd 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -128,7 +128,7 @@ typedef unsigned LONG_LONG Py_uintptr_t;
* #define DONT_HAVE_STAT
* and/or
* #define DONT_HAVE_FSTAT
- * to your config.h. Python code beyond this should check HAVE_STAT and
+ * to your pyconfig.h. Python code beyond this should check HAVE_STAT and
* HAVE_FSTAT instead.
* Also
* #define DONT_HAVE_SYS_STAT_H