-
-
Notifications
You must be signed in to change notification settings - Fork 31.3k
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
gh-92434: Silence a compiler warning in _sqlite/connection.c for 32bit version #93090
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. |
GH-93672 is a backport of this pull request to the 3.11 branch. |
@kumaraditya303 Do you know the possibility around |
Please create a new issue to discuss this. |
MSVC emits a
possible loss of data
warning when building 32bit version of_sqlite3.Connection.serialize()
, whose data sizeisshould be limited to0x7fffffff
insqlite-3.38.4.0/sqlite3.c
,even on 64bit python(EDIT: Sorry, I missed the pages):#92434