Skip to content

BUG: Fixed bug where Series.append raised TypeError with tuple of Series #28416

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 1 commit into from
Closed

BUG: Fixed bug where Series.append raised TypeError with tuple of Series #28416

wants to merge 1 commit into from

Conversation

rohitkg98
Copy link
Contributor

  • closes #xxxx
  • tests added / passed
  • passes black pandas
  • passes git diff upstream/master -u -- "*.py" | flake8 --diff
  • whatsnew entry

to_concat = [self] + to_append
elif isinstance(to_append, tuple):
to_concat = [self] + list(to_append)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could just do this on line 2733

@jbrockmendel
Copy link
Member

needs a test for the fixed bug

@TomAugspurger
Copy link
Contributor

Hmm looks like we have two PRs for this: #28412 (review).

The other PR has a test.

@WillAyd
Copy link
Member

WillAyd commented Sep 13, 2019

Yea thanks a lot for the PR @rohitkg98 but the other one came in a little earlier to solve this one. We have a ton of other open issues though, so would gladly welcome contribution on any others

@WillAyd WillAyd closed this Sep 13, 2019
@WillAyd WillAyd added the Duplicate Report Duplicate issue or pull request label Sep 13, 2019
@rohitkg98
Copy link
Contributor Author

rohitkg98 commented Sep 13, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Duplicate Report Duplicate issue or pull request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants