We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8bdb13 commit 05b1a91Copy full SHA for 05b1a91
Modules/arraymodule.c
@@ -154,7 +154,7 @@ enum machine_format_code {
154
static arraydata *
155
arraydata_alloc(Py_ssize_t size, int itemsize)
156
{
157
- assert (size <= PY_SSIZE_T_MAX / itemsize);
+ assert(size <= PY_SSIZE_T_MAX / itemsize);
158
Py_ssize_t bufsize = sizeof(arraydata) + size * itemsize;
159
arraydata *data = (arraydata *)PyMem_Malloc(bufsize);
160
if (data == NULL) {
0 commit comments