-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
gh-92434: Silence a compiler warning in _sqlite/connection.c for 32bit version #93090
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
Conversation
Misc/NEWS.d/next/Library/2022-05-25-04-48-30.gh-issue-92434.ZCv8o0.rst
Outdated
Show resolved
Hide resolved
|
Thanks for you PR, @neonene, and thanks for sorting out the nitty gritty details, Kumar! If there are still unresolved issues, please open a new issue in the bug tracker. |
|
Thanks @neonene for the PR, and @erlend-aasland for merging it 🌮🎉.. I'm working now to backport this PR to: 3.11. |
…n.c on 32-bit systems (pythonGH-93090) (cherry picked from commit d8395eb) Co-authored-by: neonene <[email protected]>
|
GH-93672 is a backport of this pull request to the 3.11 branch. |
… 32-bit systems (GH-93090) (cherry picked from commit d8395eb) Co-authored-by: neonene <[email protected]>
|
@kumaraditya303 Do you know the possibility around |
Please create a new issue to discuss this. |
MSVC emits a
possible loss of datawarning when building 32bit version of_sqlite3.Connection.serialize(), whose data sizeisshould be limited to0x7fffffffinsqlite-3.38.4.0/sqlite3.c,even on 64bit python(EDIT: Sorry, I missed the pages):#92434