File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -296,6 +296,7 @@ Improvements to existing features
296296- Improved performance of compatible pickles (:issue: `6899 `)
297297- Refactor Block classes removing `Block.items ` attributes to avoid duplication
298298 in item handling (:issue: `6745 `, :issue: `6988 `).
299+ - Improve performance in certain reindexing operations by optimizing ``take_2d `` (:issue: `6749 `)
299300
300301.. _release.bug_fixes-0.14.0 :
301302
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ users upgrade to this version.
2929
3030.. warning::
3131
32- In 0.14.0 all ``NDFrame`` based containers have underwent significant internal refactoring. Before that each block of
33- homogeneous data had its own labels and extra care was necessary to keep those in sync with parent container's labels.
34- As stated, the refactoring is internal and no publicly visible changes should happen.
32+ In 0.14.0 all ``NDFrame`` based containers have undergone significant internal refactoring. Before that each block of
33+ homogeneous data had its own labels and extra care was necessary to keep those in sync with the parent container's labels.
34+ This should not have any visible user/API behavior changes (:issue:`6745`)
3535
3636.. _whatsnew_0140.api:
3737
@@ -529,6 +529,7 @@ Performance
529529- improve performance of slice indexing on Series with string keys (:issue:`6341`, :issue:`6372`)
530530- Performance improvements in timedelta conversions for integer dtypes (:issue:`6754`)
531531- Improved performance of compatible pickles (:issue:`6899`)
532+ - Improve performance in certain reindexing operations by optimizing ``take_2d`` (:issue:`6749`)
532533
533534Experimental
534535~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments