-
-
Notifications
You must be signed in to change notification settings - Fork 32.2k
bpo-32745: Fix a regression in the handling of ctypes' c_wchar_p type #8721
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
bpo-32745: Fix a regression in the handling of ctypes' c_wchar_p type #8721
Conversation
Embedded nulls would cause a ValueError to be raised. Thanks go to Eryk Sun for their analysis.
73653ae
to
5ecaf25
Compare
Any reason why this is sitting unreviewed? Encountered this issue today. |
I've also encountered this issue, would be great if the fix could progress.. |
@ambv: Please replace |
Thanks @ZackerySpytz for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.8. |
Thanks @ZackerySpytz for the PR, and @ambv for merging it 🌮🎉.. I'm working now to backport this PR to: 3.9. |
…pythonGH-8721) Embedded nulls would cause a ValueError to be raised. Thanks go to Eryk Sun for their analysis. Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 73766b0) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
GH-25811 is a backport of this pull request to the 3.8 branch. |
…pythonGH-8721) Embedded nulls would cause a ValueError to be raised. Thanks go to Eryk Sun for their analysis. Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 73766b0) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
GH-25812 is a backport of this pull request to the 3.9 branch. |
Embedded nulls would cause a ValueError to be raised. Thanks go to
Eryk Sun for their analysis.
https://bugs.python.org/issue32745