You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DEPR: Change read_excel sheetname to sheet_name (pandas-dev#16442)
* GH10559: Minor improvement: Change to_excel sheet name
modify io/excel.py and relevant docs (io.rst) to use sheet_name for read_excel
but allow sheetname to still be used for backwards compatibility. add test_excel
to verify that sheet_name and sheetname args produce the same result.
* GH10559: Minor improvement: Change to_excel sheet name
added @deprecate_kwarg to read_excel as arg changes from sheetname to sheet_name.
moved test comments into function, add assert_produces_warning.
* GH10559: Minor improvement: Change to_excel sheet name
remove manual arg change, use @deprecate_kwarg to read_excel
as arg changes from sheetname to sheet_name.
* GH10559: Minor improvement: Change to_excel sheet name
shorten lines under 79 char.
* GH10559: Minor improvement: Change to_excel sheet name
update whats new 0.21.0 Deprecations section noting sheetname deprecated
in favor of sheet_name.
add sheetname deprecation in read_excel() docstring.
0 commit comments