docs(python): Document write_ipc buffer behavior with file=None#27430
Merged
ritchie46 merged 1 commit intopola-rs:mainfrom Apr 28, 2026
Merged
docs(python): Document write_ipc buffer behavior with file=None#27430ritchie46 merged 1 commit intopola-rs:mainfrom
write_ipc buffer behavior with file=None#27430ritchie46 merged 1 commit intopola-rs:mainfrom
Conversation
ritchie46
approved these changes
Apr 28, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #27430 +/- ##
==========================================
+ Coverage 81.19% 81.29% +0.10%
==========================================
Files 1832 1832
Lines 253247 253263 +16
Branches 3176 3176
==========================================
+ Hits 205626 205895 +269
+ Misses 46798 46545 -253
Partials 823 823 ☔ View full report in Codecov by Sentry. 🚀 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.
Closes #18200.
Documents the behavior of
DataFrame.write_ipc(file=None).When
file=None,write_ipcreturns aBytesIOobject. The buffer position is left at the end of the written data, so users need to callseek(0)before reading it back withpl.read_ipc.Added a short docstring example showing:
AI usage: