File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,9 @@ Improvements to existing features
92
92
- improved dtype inference for ``timedelta `` like passed to constructors (:issue: `5458 `,:issue: `5689 `)
93
93
- escape special characters when writing to latex (:issue: `5374 `)
94
94
- perf improvements in ``DataFrame.apply `` (:issue: `6013 `)
95
+ - pd.to_csv and pd.to_datetime learned a new ``infer_datetime_format `` keyword which greatly
96
+ improves parsing perf in many cases. Thanks to @lexual for suggesting and @danbirken
97
+ for rapidly implementing. (:issue: `5490 `,:issue: `6021 `)
95
98
96
99
.. _release.bug_fixes-0.13.1 :
97
100
Original file line number Diff line number Diff line change @@ -69,6 +69,10 @@ Deprecations
69
69
Enhancements
70
70
~~~~~~~~~~~~
71
71
72
+ - pd.to_csv and pd.to_datetime learned a new ``infer_datetime_format`` keyword which greatly
73
+ improves parsing perf in many cases. Thanks to @lexual for suggesting and @danbirken
74
+ for rapidly implementing. (:issue:`5490`,:issue:`6021`)
75
+
72
76
- The ``ArrayFormatter`` for ``datetime`` and ``timedelta64`` now intelligently
73
77
limit precision based on the values in the array (:issue:`3401`)
74
78
You can’t perform that action at this time.
0 commit comments