From b517fb9f65908ffb7995fef10bc8784f42f0b222 Mon Sep 17 00:00:00 2001 From: Kevon Scott Date: Tue, 30 Jan 2024 20:29:38 -0500 Subject: [PATCH] 'freq' is removed in GH 14146), not moved to kw-only arg. Removal is already captured under 'Removal of prior version deprecations/changes' --- doc/source/whatsnew/v2.0.0.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v2.0.0.rst b/doc/source/whatsnew/v2.0.0.rst index be63da09846c8..16f53719ff3a7 100644 --- a/doc/source/whatsnew/v2.0.0.rst +++ b/doc/source/whatsnew/v2.0.0.rst @@ -732,7 +732,7 @@ or, if your formats are all ISO8601 (but possibly not identically-formatted) :: Other API changes ^^^^^^^^^^^^^^^^^ -- The ``freq``, ``tz``, ``nanosecond``, and ``unit`` keywords in the :class:`Timestamp` constructor are now keyword-only (:issue:`45307`, :issue:`32526`) +- The ``tz``, ``nanosecond``, and ``unit`` keywords in the :class:`Timestamp` constructor are now keyword-only (:issue:`45307`, :issue:`32526`) - Passing ``nanoseconds`` greater than 999 or less than 0 in :class:`Timestamp` now raises a ``ValueError`` (:issue:`48538`, :issue:`48255`) - :func:`read_csv`: specifying an incorrect number of columns with ``index_col`` of now raises ``ParserError`` instead of ``IndexError`` when using the c parser. - Default value of ``dtype`` in :func:`get_dummies` is changed to ``bool`` from ``uint8`` (:issue:`45848`)