-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
CLN: Remove/deprecate unused/misleading dtype functions #23917
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 11 commits
607f853
1e95d48
714c287
ba6ef3d
a983755
d7944b6
2c9b406
34c4e91
8e86599
0cf6239
8adda17
fe02240
53d1de4
e2f8669
3daaabf
2566a18
8342b97
a7f7916
6dda1be
9c64633
3d8752f
bb8a814
71483b5
e0593bb
5bdc157
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1046,6 +1046,8 @@ Deprecations | |
- The ``keep_tz=False`` option (the default) of the ``keep_tz`` keyword of | ||
:meth:`DatetimeIndex.to_series` is deprecated (:issue:`17832`). | ||
- Timezone converting a tz-aware ``datetime.datetime`` or :class:`Timestamp` with :class:`Timestamp` and the ``tz`` argument is now deprecated. Instead, use :meth:`Timestamp.tz_convert` (:issue:`23579`) | ||
- :func:`pandas.types.is_period` is deprecated in favor of `pandas.types.is_period_dtype` (:issue:`23917`) | ||
- :func:`pandas.types.is_datetimetz` is deprecated in favor of `pandas.types.is_datetime64tz` (:issue:`23917`) | ||
|
||
.. _whatsnew_0240.deprecations.datetimelike_int_ops: | ||
|
||
|
@@ -1125,6 +1127,7 @@ Removal of prior version deprecations/changes | |
- :meth:`SparseSeries.to_dense` has dropped the ``sparse_only`` parameter (:issue:`14686`) | ||
- :meth:`DataFrame.astype` and :meth:`Series.astype` have renamed the ``raise_on_error`` argument to ``errors`` (:issue:`14967`) | ||
- ``is_sequence``, ``is_any_int_dtype``, and ``is_floating_dtype`` have been removed from ``pandas.api.types`` (:issue:`16163`, :issue:`16189`) | ||
- ``is_floating_dtype`` has been removed (:issue:`????`) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this looks like a dupe of the line above There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The existing whatsnew makes it look like this has already been removed, but it is still present in master, and not listed (as deprecated or removed) in #6581. The whatsnew also says is_sequence and is_any_int_dtype have been removed, but each of these are still used in a few places internally. Get rid of those usages? (any_int_dtype only has two usages so that one will be easy) |
||
|
||
.. _whatsnew_0240.performance: | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.