From 06eafff70d0acd053841d30972263fccd43db5ec Mon Sep 17 00:00:00 2001 From: Dave Hirschfeld Date: Wed, 26 Apr 2017 10:45:33 +1000 Subject: [PATCH] Add NaTType to tslib public api --- pandas/tslib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tslib.py b/pandas/tslib.py index f7d99538c2ea2..c960a4eaf59ad 100644 --- a/pandas/tslib.py +++ b/pandas/tslib.py @@ -4,4 +4,4 @@ warnings.warn("The pandas.tslib module is deprecated and will be " "removed in a future version.", FutureWarning, stacklevel=2) from pandas._libs.tslib import (Timestamp, Timedelta, - NaT, OutOfBoundsDatetime) + NaT, NaTType, OutOfBoundsDatetime)