Skip to content

Commit 4cb859c

Browse files
committed
cleanup whatsnew/v1.4.0.rst
1 parent 96fa814 commit 4cb859c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/source/whatsnew/v1.4.0.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -231,14 +231,14 @@ Deprecations
231231

232232
Deprecated Int64Index, UInt64Index & Float64Index
233233
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
234-
:class:`Int64Index`, :class:`UInt64Index` (:issue:`43028`) and :class:`Float64Index` have
235-
been deprecated in favor of the new :class:`NumericIndex` (:issue:`43028`).
234+
:class:`Int64Index`, :class:`UInt64Index` and :class:`Float64Index` have been deprecated
235+
in favor of the new :class:`NumericIndex` and will be removed in Pandas 2.0 (:issue:`43028`).
236236

237237
For the duration of Pandas 1.x, in order to maintain backward compatibility, calls to
238238
:class:`Index` will continue to return :class:`Int64Index`, :class:`UInt64Index` and :class:`Float64Index`
239239
when given numeric data, but in Pandas 2.0, a :class:`NumericIndex` will be returned.
240240

241-
*Current behavior (Pandas 1.x)*:
241+
*Current behavior*:
242242

243243
.. code-block:: ipython
244244
@@ -247,7 +247,7 @@ when given numeric data, but in Pandas 2.0, a :class:`NumericIndex` will be retu
247247
In [1]: pd.Index([1, 2, 3], dtype="uint64")
248248
Out [1]: UInt64Index([1, 2, 3], dtype='uint64')
249249
250-
*Future behavior (Pandas 2.0)*:
250+
*Future behavior*:
251251

252252
.. code-block:: ipython
253253

0 commit comments

Comments
 (0)