We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per Wikipedia, a serial comma is
a comma placed immediately after the penultimate term... in a series of three or more terms
We would therefore expect that a serial comma would not be placed by concatenate() when given a sequence of two items, but this is not the case.
concatenate()
Expected:
>>> humanfriendly.text.concatenate(items=["foo", "bar"], serial_comma=True) 'foo and bar'
Actual:
>>> humanfriendly.text.concatenate(items=["foo", "bar"], serial_comma=True) 'foo, and bar'
Workaround:
>>> items = ["foo", "bar"] >>> humanfriendly.text.concatenate(items=items, serial_comma=len(items) > 2) 'foo and bar'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Per Wikipedia, a serial comma is
We would therefore expect that a serial comma would not be placed by
concatenate()
when given a sequence of two items, but this is not the case.Expected:
Actual:
Workaround:
The text was updated successfully, but these errors were encountered: