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
Hello,
I think that the version of stringcase currently available on Pypi contains a bug. The camelcase function removes more characters than needed:
$ virtualenv .venv New python executable in /Users/flou/.venv/bin/python2.7 Also creating executable in /Users/flou/.venv/bin/python Installing setuptools, pip, wheel...done. $ source .venv/bin/activate (.venv) $ pip install stringcase Collecting stringcase Installing collected packages: stringcase Successfully installed stringcase-1.2.0 (.venv) $ python Python 2.7.13 (default, Jul 18 2017, 09:17:00) [GCC 4.2.1 Compatible Apple LLVM 8.1.0 (clang-802.0.42)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import stringcase >>> stringcase.camelcase('foo-bar') 'foar' >>> stringcase.pascalcase('foo-bar') 'Foar'
The text was updated successfully, but these errors were encountered:
Bug in version of stringcase pushed on pypi #8
cc7d5eb
I did not consider my PR release ready, as stated in the comments: #6
Especially since I modified the CamelCase method, as one suggestion to address #5
We need to discuss changes and the rerelease.
Sorry, something went wrong.
Bug still there, 4 years later, just FYI
No branches or pull requests
Hello,
I think that the version of stringcase currently available on Pypi contains a bug.
The camelcase function removes more characters than needed:
The text was updated successfully, but these errors were encountered: