__init__.py 204 B

12345678
  1. """
  2. Public API for Rolling Window Indexers.
  3. """
  4. from pandas.core.indexers import check_array_indexer
  5. from pandas.core.window.indexers import BaseIndexer
  6. __all__ = ["check_array_indexer", "BaseIndexer"]