-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
CLN: Remove literal string/bytes support in IO readers #57307
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
Conversation
df = pd.DataFrame({"a": range(3), "b": list("abc")}) | ||
print(df) | ||
html = df.to_html() | ||
alist = pd.read_html(html, index_col=0) | ||
alist = pd.read_html(io.StringIO(html), index_col=0) |
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.
as this is such an old whatsnew is is possible to not change this (other than making this not run the code?)
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.
Yeah the :okwarning:
was supressing the deprecation warning, so the only other way would be to change to a code-block
thx @mroeschke |
xref #53767