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
Running the tests on Python 3.3 / Python 3.4:
def test_filename_formatting(): assert click.format_filename(b'foo.txt') == 'foo.txt' assert click.format_filename(b'/x/foo.txt') == '/x/foo.txt' assert click.format_filename(u'/x/foo.txt') == '/x/foo.txt' assert click.format_filename(u'/x/foo.txt', shorten=True) == 'foo.txt' > assert click.format_filename('/x/foo\xff.txt', shorten=True) \ == u'foo\ufffd.txt' E assert 'fooÿ.txt' == 'foo�.txt' E - fooÿ.txt E ? ^ E + foo�.txt E ? ^
The text was updated successfully, but these errors were encountered:
There is a good chance that test is broken in the release version. It's definitely fixed in git.
Sorry, something went wrong.
No branches or pull requests
Running the tests on Python 3.3 / Python 3.4:
The text was updated successfully, but these errors were encountered: