You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tested with pandas repository: https://github.com/pandas-dev/pandas, and it looks the data generated for the following cmd isn't correct (run from the root of the repository dir):
The name should be pandas.api instead of pandas.pandas.api. I am not very clear about the naming convention, but I know if the first is the latter is the right name, then ./pandas/tests/api/test_api.py which imports the above entry, should have an imports entry with value pandas.pandas.api, currently it only has imports entry with value `pandas.api".
The code for the above __init__.py has the following imports statements:
from pandas.api import (
extensions,
indexers,
interchange,
types,
)
So it should have imports entries like pandas.api.extensions, pandas.api.indexers etc, currently it only has pandas.api (see above data block), I guess the program didn't handle from pandas.api import (...) syntax correctly.
The text was updated successfully, but these errors were encountered:
I tested with
pandas
repository: https://github.com/pandas-dev/pandas, and it looks the data generated for the following cmd isn't correct (run from the root of the repository dir):The entry for the above
./pandas/api
dir is as following:There seemed two issues with this entry:
The name should be
pandas.api
instead ofpandas.pandas.api
. I am not very clear about the naming convention, but I know if the first is the latter is the right name, then./pandas/tests/api/test_api.py
which imports the above entry, should have an imports entry with valuepandas.pandas.api
, currently it only has imports entry with value `pandas.api".The code for the above
__init__.py
has the following imports statements:So it should have imports entries like
pandas.api.extensions
,pandas.api.indexers
etc, currently it only haspandas.api
(see above data block), I guess the program didn't handlefrom pandas.api import (...)
syntax correctly.The text was updated successfully, but these errors were encountered: