bpo-22273: Disabled tests while investigating buildbot failures on ARM7L/PPC64. (GH-16377)

This commit is contained in:
Vinay Sajip 2019-09-25 07:58:32 +01:00 committed by GitHub
parent f163aeaa8c
commit 57dc7d5ae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -652,7 +652,7 @@ PyCStructUnionType_update_stgdict(PyObject *type, PyObject *fields, int isStruct
#define MAX_ELEMENTS 16
if (arrays_seen && (size <= 16)) {
if (arrays_seen && (size <= MAX_ELEMENTS)) {
/*
* See bpo-22273. Arrays are normally treated as pointers, which is
* fine when an array name is being passed as parameter, but not when