-
Notifications
You must be signed in to change notification settings - Fork 653
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-#4510: Align experimental and regular IO modules initializations #4511
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4511 +/- ##
=======================================
Coverage 86.36% 86.36%
=======================================
Files 228 228
Lines 18413 18413
=======================================
Hits 15902 15902
Misses 2511 2511 📣 Codecov can now indicate which changes are the most critical in Pull Requests. Learn more |
46446eb
to
c84e3ac
Compare
8f74f52
to
074e186
Compare
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.
looks good to me - left a quick question about some changes that seem unrelated to the PR - let's merge once they're addressed!
assert IsExperimental.get(), "This only works in experimental mode" | ||
_, _, _, kwargs = inspect.getargvalues(inspect.currentframe()) | ||
|
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.
Is there a reason why the kwargs line was moved up?
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.
Yes, kwargs line was moved up to avoid passing FactoryDispatcher
argument into kwargs. If FactoryDispatcher
argument is present in the kwargs, it can break further io logic.
26ccc9a
to
71ae6a5
Compare
Thanks for review! Unfortunetely CI failed because of CI-related issues, hope it restores soon. |
@alexander3774, LGTM, thanks for the changes. |
Signed-off-by: alexander3774 <myskova977@gmail.com>
Signed-off-by: alexander3774 <myskova977@gmail.com>
Signed-off-by: alexander3774 <myskova977@gmail.com>
71ae6a5
to
d544d98
Compare
Signed-off-by: alexander3774 myskova977@gmail.com
What do these changes do?
Refactoring
modin.experimental.pandas.io
to be in line with changes introduced in #4017.Closes #4510.
flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
git commit -s
docs/development/architecture.rst
is up-to-date