8000 gh-80480: array: Add 'w' typecode. by methane · Pull Request #105242 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-80480: array: Add 'w' typecode. #105242

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jun 4, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Suppress unused variable warning
  • Loading branch information
methane committed Jun 3, 2023
commit d1ee7909909bbb2a62cf7006c7b2a230d7611c61
1 change: 1 addition & 0 deletions Modules/arraymodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -1783,6 +1783,7 @@ array_array_fromunicode_impl(arrayobject *self, PyObject *ustr)
Py_UCS4 *u = PyUnicode_AsUCS4(ustr, ((Py_UCS4*)self->ob_item) + old_size,
ustr_length, 0);
assert(u != NULL);
(void)u; // Suppress unused_variable warning.
}

Py_RETURN_NONE;
Expand Down
0