Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Parser/pegen/pegen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ _PyPegen_join_names_with_dot(Parser *p, expr_ty first_name, expr_ty second_name)
if (!second_str) {
return NULL;
}
ssize_t len = strlen(first_str) + strlen(second_str) + 1; // +1 for the dot
Py_ssize_t len = strlen(first_str) + strlen(second_str) + 1; // +1 for the dot

PyObject *str = PyBytes_FromStringAndSize(NULL, len);
if (!str) {
Expand Down