We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f542723 commit f85002cCopy full SHA for f85002c
pandas/_libs/__init__.py
@@ -1,6 +1,15 @@
1
-# flake8: noqa
+__all__ = [
2
+ "NaT",
3
+ "NaTType",
4
+ "OutOfBoundsDatetime",
5
+ "Period",
6
+ "Timedelta",
7
+ "Timestamp",
8
+ "iNaT",
9
+]
10
-from .tslibs import (
11
+
12
+from pandas._libs.tslibs import (
13
NaT,
14
NaTType,
15
OutOfBoundsDatetime,
pandas/_libs/reduction.pyx
@@ -1,5 +1,4 @@
from copy import copy
-from distutils.version import LooseVersion
from cython import Py_ssize_t
from cpython.ref cimport Py_INCREF
0 commit comments