gh-142787: Fix assertion failure in sqlite3 blob slice#142824
Merged
erlend-aasland merged 5 commits intopython:mainfrom Feb 26, 2026
Merged
gh-142787: Fix assertion failure in sqlite3 blob slice#142824erlend-aasland merged 5 commits intopython:mainfrom
erlend-aasland merged 5 commits intopython:mainfrom
Conversation
Contributor
|
Thanks for working on this! Please make sure this regression is covered by the test suite. |
Member
|
Hi, there is a duplicated news entry, please remove it. |
8c9bd46 to
577803c
Compare
Contributor
|
Moreover, please avoid force-pushing (as recommended by the devguide). |
Contributor
Author
Noted @erlend-aasland |
aisk
approved these changes
Dec 17, 2025
Contributor
Author
|
@aisk Gentle reminder on this |
Member
|
Let's wait for @erlend-aasland's review. |
erlend-aasland
approved these changes
Feb 26, 2026
|
Thanks @abdoulrasheed for the PR, and @erlend-aasland for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13, 3.14. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Feb 26, 2026
(cherry picked from commit 06b0920) Co-authored-by: A.Ibrahim <[email protected]>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Feb 26, 2026
(cherry picked from commit 06b0920) Co-authored-by: A.Ibrahim <[email protected]>
|
GH-145297 is a backport of this pull request to the 3.14 branch. |
|
GH-145298 is a backport of this pull request to the 3.13 branch. |
erlend-aasland
pushed a commit
that referenced
this pull request
Feb 27, 2026
(cherry picked from commit 06b0920) Co-authored-by: A.Ibrahim <[email protected]>
erlend-aasland
pushed a commit
that referenced
this pull request
Feb 27, 2026
(cherry picked from commit 06b0920) Co-authored-by: A.Ibrahim <[email protected]>
bkap123
pushed a commit
to bkap123/cpython
that referenced
this pull request
Feb 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix assertion failure when slicing a
sqlite3.Blobwith indices that result in an empty slice.PyObject *read_multiple(pysqlite_Blob *, Py_ssize_t, Py_ssize_t): Assertion 'offset < sqlite3_blob_bytes(self->blob)' failed#142787