-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
refactor(python): Remove private DataFrame._read
classmethods
#15521
Conversation
DataFrame._read_*
classmethodsDataFrame._read
classmethods
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #15521 +/- ##
==========================================
+ Coverage 81.14% 81.16% +0.01%
==========================================
Files 1362 1362
Lines 174989 174999 +10
Branches 2533 2533
==========================================
+ Hits 142000 142033 +33
+ Misses 32505 32482 -23
Partials 484 484 ☔ View full report in Codecov by Sentry. |
@@ -85,7 +85,7 @@ doctest: .venv build ## Run doctests | |||
$(VENV_BIN)/pytest tests/docs/test_user_guide.py -m docs | |||
|
|||
.PHONY: docs | |||
docs: .venv build ## Build Python docs (incremental) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a drive-by: building the docs does not rely on the Polars binary
The implementation of IO functionality was (unnecessarily) split between two places. This centralizes the logic in 1 place, makes subsequent refactors easier. There is a LOT of duplication here.