-
Notifications
You must be signed in to change notification settings - Fork 932
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
Fix discoverability of submodules inside pd.util
#17215
Conversation
/merge |
The errors I'm seeing are
which is coming from https://github.com/rapidsai/cudf/blob/branch-24.12/python/cudf/cudf/pandas/module_accelerator.py#L458. Edit: |
Noting that there will be discrepancies depending on pandas 2.x version pandas 2.2 (and upcoming 2.3) will have pandas 2.0, 2.1 (and upcoming 3.0) will not have |
/okay to test |
Description
Fixes: #17166
This PR fixes the discoverability of the submodules of attributes and modules inside
pd.util
. Somehowimportlib.import_module("pandas.util").__dict__
doesn't display submodules and only root level attributes.Checklist