bpo-29936: fix typo _GNUCMINOR (#878) · python/cpython@83371f4 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 83371f4
authored and
committed
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -53,7 +53,7 @@ | ||
53 | 53 | |
54 | 54 | Requires at GCC 3.1+ */ |
55 | 55 | #if (defined(__GNUC__) && !defined(__STRICT_ANSI__) && \ |
56 | - (((__GNUC__ == 3) && (__GNU_MINOR__ >= 1)) | | |
56 | + (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) | | |
57 | 57 | /* Two gcc extensions. |
58 | 58 | &a[0] degrades to a pointer: a different type from an array */ |
59 | 59 | #define Py_ARRAY_LENGTH(array) \ |