Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pandas/io/__init__.py: 50%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from typing import TYPE_CHECKING
3if TYPE_CHECKING:
4 # import modules that have public classes/functions
5 from pandas.io import (
6 formats,
7 json,
8 stata,
9 )
11 # and mark only those modules as public
12 __all__ = ["formats", "json", "stata"]