8000 BUG: DataFrame.append with timedelta64 by jbrockmendel · Pull Request #39574 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

BUG: DataFrame.append with timedelta64 #39574

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

Merged
merged 16 commits into from
Feb 12, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert no-longer necessary
  • Loading branch information
jbrockmendel committed Feb 12, 2021
commit 3ed534ca7aaf420317d16687aa735520e7bd4fa2
2 changes: 0 additions & 2 deletions pandas/tests/reshape/concat/test_append.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,6 @@ def test_append_empty_frame_to_series_with_dateutil_tz(self):

# column order is different
expected = expected[["c", "d", "date", "a", "b"]]
dtype = Series([date]).dtype
expected["date"] = expected["date"].astype(dtype)
result = df.append([ser, ser], ignore_index=True)
tm.assert_frame_equal(result, expected)

Expand Down
0