We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8ef49 commit 0a37067Copy full SHA for 0a37067
pandas/__init__.py
@@ -64,7 +64,11 @@
64
parser = _DeprecatedModule(deprmod='pandas.parser', deprmodto='pandas.io.libparsers')
65
lib = _DeprecatedModule(deprmod='pandas.lib', deprmodto='pandas._libs.lib',
66
moved={'infer_dtype': 'pandas.api.lib.infer_dtype'})
67
-tslib = _DeprecatedModule(deprmod='pandas.tslib', deprmodto='pandas._libs.tslib')
+tslib = _DeprecatedModule(deprmod='pandas.tslib', deprmodto='pandas._libs.tslib',
68
+ moved={'Timestamp': 'pandas.Timestamp',
69
+ 'Timedelta': 'pandas.Timedelta',
70
+ 'NaT': 'pandas.NaT',
71
+ 'OutOfBoundsDatetime': 'pandas.errors.OutOfBoundsDatetime'})
72
73
# use the closest tagged version if possible
74
from ._version import get_versions
0 commit comments