Skip to content

Commit 505f4ad

Browse files
Merge remote-tracking branch 'matthias/growable-ring-buffer' into growable-ring-buffer
2 parents c30e157 + e677098 commit 505f4ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_collectionsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ struct dequeobject {
7878
PyObject_VAR_HEAD
7979
/* Vector of pointers to list elements. list[0] is ob_item[0], etc. */
8080
PyObject **ob_item;
81-
// allocated needs to be a power of two
81+
/* allocated needs to be a power of two */
8282
Py_ssize_t allocated;
8383
Py_ssize_t first_element;
8484
Py_ssize_t maxlen;

0 commit comments

Comments
 (0)