We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ab57dc commit ab5562cCopy full SHA for ab5562c
pandas/api/lib/__init__.py
@@ -0,0 +1,5 @@
1
+# flake8: noqa
2
+
3
+""" public toolkit API """
4
5
+from pandas._libs.lib import infer_dtype
pandas/tests/api/test_lib.py
@@ -0,0 +1,11 @@
+# -*- coding: utf-8 -*-
+import pytest
+import pandas # noqa
6
7
+@pytest.mark.parametrize('f', ['infer_dtype'])
8
+def test_importable(f):
9
+ from pandas.api import lib
10
+ e = getattr(lib, f)
11
+ assert e is not None
0 commit comments