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
Waldo crashes when trying to index a Text (i.e. str[0]). Below is an example of code that will cause the crash.
Endpoint StrTester; StrTester { Text str_test = "hello"; Public Function return_str() { str_test[0]; } }
from str_bug_emitted import StrTester import sys import os sys.path.append(os.path.join("../../")) from waldo.lib import Waldo str_tester = Waldo.no_partner_create(StrTester) str_tester.return_str()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Waldo crashes when trying to index a Text (i.e. str[0]). Below is an example of code that will cause the crash.
Waldo code
Python code
The text was updated successfully, but these errors were encountered: