-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
CLN: Removed outtype in DataFrame.to_dict #13627
CLN: Removed outtype in DataFrame.to_dict #13627
Conversation
6e398b6
to
1b5099d
Compare
@@ -443,6 +443,7 @@ Removal of prior version deprecations/changes | |||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |||
|
|||
- ``DataFrame.to_csv()`` has dropped the ``engine`` parameter, as was deprecated in 0.17.1 (:issue:`11274`, :issue:`13419`) | |||
- ``DataFrame.to_dict()`` has dropped the ``outtype`` parameter in favor of ``orient`` (:issue:``) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
put this issue number then
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and the issue you reference in the issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Current coverage is 84.33%@@ master #13627 diff @@
==========================================
Files 138 138
Lines 51100 51099 -1
Methods 0 0
Messages 0 0
Branches 0 0
==========================================
- Hits 43097 43096 -1
Misses 8003 8003
Partials 0 0
|
1b5099d
to
a7afe55
Compare
@jreback : Made the requested doc change (no tests need as a result hence the |
@gfyoung Thanks! |
Follows up from pandas-dev#8486 in 0.15.0 by removing outtype in DataFrame.to_dict()
Follows up from #8486 in
0.15.0
by removingouttype
inDataFrame.to_dict()
Fortunately or unfortunately, no tests were written then to test the deprecation, so there was nothing to remove from the test suite this time around.