summaryrefslogtreecommitdiffstats
path: root/Include/pymacro.h
diff options
context:
space:
mode:
authorNiklas Fiekas <niklas.fiekas@backscattering.de>2017-03-29 04:58:01 (GMT)
committerBenjamin Peterson <benjamin@python.org>2017-03-29 04:58:01 (GMT)
commit83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1 (patch)
treef6b054e7c81cc8d5b7f2afcd028bbc52a1c06a52 /Include/pymacro.h
parent794623bdb232eafd8925f76470209afcdcbcdcd2 (diff)
downloadcpython-83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1.zip
cpython-83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1.tar.gz
cpython-83371f4f7f70406ea5d08c5fa8dbdbbcc0355ee1.tar.bz2
bpo-29936: fix typo __GNU*C*_MINOR__ (#878)
Diffstat (limited to 'Include/pymacro.h')
-rw-r--r--Include/pymacro.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pymacro.h b/Include/pymacro.h
index 2a839ab..69577b7 100644
--- a/Include/pymacro.h
+++ b/Include/pymacro.h
@@ -53,7 +53,7 @@
Requires at GCC 3.1+ */
#if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \
- (((__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) || (__GNUC__ >= 4)))
+ (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) || (__GNUC__ >= 4)))
/* Two gcc extensions.
&a[0] degrades to a pointer: a different type from an array */
#define Py_ARRAY_LENGTH(array) \