Skip to content

Commit e677098

Browse files
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b3ec025 commit e677098

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)