10000 BUG: replace of numeric by string / dtype coversion (GH15743) by ucals · Pull Request #15812 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: replace of numeric by string / dtype coversion (GH15743) #15812

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

Closed
wants to merge 12 commits into from
Prev Previous commit
Next Next commit
Fixing PEP8 line indent
  • Loading branch information
Carlos Souza authored and jreback committed Mar 28, 2017
commit 45e67e43d4683775627f11c84785d2af1aa2e081
2 changes: 1 addition & 1 deletion pandas/tests/series/test_replace.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_replace_gh5319(self):
expected = ser.copy()
expected.loc[2] = pd.Timestamp('20120101')
result = ser.replace({pd.Timestamp('20130103'):
pd.Timestamp('20120101')})
pd.Timestamp('20120101')})
tm.assert_series_equal(result, expected)
result = ser.replace(pd.Timestamp('20130103'),
pd.Timestamp('20120101'))
Expand Down
0