feat(python!): Compute height for gather_every() of 0-width input - #28600
Open
nameexhaustion wants to merge 1 commit into
Open
feat(python!): Compute height for gather_every() of 0-width input#28600nameexhaustion wants to merge 1 commit into
gather_every() of 0-width input#28600nameexhaustion wants to merge 1 commit into
Conversation
nameexhaustion
force-pushed
the
nxs/drop-strict
branch
2 times, most recently
from
July 30, 2026 09:03
adfd8a9 to
e103a15
Compare
nameexhaustion
force-pushed
the
nxs/gather-0w
branch
from
July 30, 2026 09:10
f169037 to
05351f5
Compare
nameexhaustion
force-pushed
the
nxs/gather-0w
branch
from
July 31, 2026 05:43
05351f5 to
313c783
Compare
nameexhaustion
marked this pull request as ready for review
July 31, 2026 05:43
nameexhaustion
requested review from
MarcoGorelli,
alexander-beedie,
c-peters and
ritchie46
as code owners
July 31, 2026 05:43
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## 2.0 #28600 +/- ##
==========================================
+ Coverage 81.65% 81.75% +0.09%
==========================================
Files 1868 1868
Lines 262363 262386 +23
Branches 3170 3172 +2
==========================================
+ Hits 214235 214509 +274
+ Misses 47301 47049 -252
- Partials 827 828 +1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
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.
E.g. -
>>> pl.DataFrame(height=4).gather_every(2)Before -
shape: (0, 0)After -
shape: (2, 0)