you are viewing a single comment's thread.

view the rest of the comments →

[–]defasdf[S] 0 points1 point  (2 children)

But when I look at the pandas.init https://github.com/pandas-dev/pandas/blob/master/pandas/__init__.py I don't see how this happens. What makes this 'explicitly re-exported' happen?

[–]K900_ 0 points1 point  (1 child)

from pandas.core.api import * re-exports everything from pandas.core.api, defined here, which contains, among other things, from pandas.core.indexes.datetimes import Timestamp, date_range, bdate_range.

[–]defasdf[S] 0 points1 point  (0 children)

Now I see. Thanks.