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

4 statements  

1from typing import TYPE_CHECKING 

2 

3if TYPE_CHECKING: 

4 # import modules that have public classes/functions 

5 from pandas.io import ( 

6 formats, 

7 json, 

8 stata, 

9 ) 

10 

11 # and mark only those modules as public 

12 __all__ = ["formats", "json", "stata"]