8000 ENH: Add Series.str.casefold by charlesdong1991 · Pull Request #25419 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

ENH: Add Series.str.casefold #25419

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 17 commits into from
Feb 28, 2019
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
fix pep8
  • Loading branch information
charlesdong1991 committed Feb 23, 2019
commit f9e52cc42de43c54f671db78a6ecc05b51fc618e
2 changes: 1 addition & 1 deletion pandas/tests/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3427,7 +3427,7 @@ def test_method_on_bytes(self):

@pytest.mark.skipif(compat.PY2, reason='not in python2')
def test_casefold(self):
#GH25405
# GH25405
casefolded = Series(['ss', NA, 'case', 'ssd'])
Copy link
Member

Choose a reason for hiding this comment

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

Just call this expected

Copy link
Member Author

Choose a reason for hiding this comment

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

thanks, @WillAyd i just changed!

530C

s = Series(['ß', NA, 'case', 'ßd'])
result = s.str.casefold()
Expand Down
0