Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pandas/tseries/__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.tseries import ( 

6 frequencies, 

7 offsets, 

8 ) 

9 

10 # and mark only those modules as public 

11 __all__ = ["frequencies", "offsets"]