Skip to content

Commit 07c9c15

Browse files
committed
remove misc comment
1 parent 30cfdbf commit 07c9c15

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Modules/arraymodule.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,6 @@ array_resize(arrayobject *self, Py_ssize_t newsize)
269269
size_t _new_size = (newsize >> 4) + (Py_SIZE(self) < 8 ? 3 : 7) + newsize;
270270
int itemsize = self->ob_descr->itemsize;
271271

272-
/* XXX The following multiplication and division does not optimize away
273-
like it does for lists since the size is not known at compile time */
274272
if (!arraydata_size_valid(_new_size, itemsize)) {
275273
PyErr_NoMemory();
276274
return -1;

0 commit comments

Comments
 (0)