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
When I use behave-webdriver with Python 2.7.1, then I get an error "sre_constants.error: nothing to repeat".
This is fixed in current versions of Python 2.7 and does not throw an exception anymore. See Python Issue18647.
I can not upgrade Python, because I need a special Python interpreter, which is only available for Python 2.7.1.
Replacing "([^"]*)?" by "([^"]+)?" is a compatible fix, so behave-webdriver will also work with Python 2.7.1.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When I use behave-webdriver with Python 2.7.1, then I get an error "sre_constants.error: nothing to repeat".
This is fixed in current versions of Python 2.7 and does not throw an exception anymore. See Python Issue18647.
I can not upgrade Python, because I need a special Python interpreter, which is only available for Python 2.7.1.
Replacing "([^"]*)?" by "([^"]+)?" is a compatible fix, so behave-webdriver will also work with Python 2.7.1.
The text was updated successfully, but these errors were encountered: