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
Comparison expression ORs can get changed to ANDs:
from stix2.pattern_visitor import create_pattern_object ast = create_pattern_object(pattern="[a:b=1 AND a:b=2 OR a:b=3]") print(ast)
produces
[a:b = 1 AND a:b = 2 AND a:b = 3]
The text was updated successfully, but these errors were encountered:
Merge pull request #438 from oasis-open/issue_437
1948b38
hack for issue_435 Fixes #435.
rpiazza
Successfully merging a pull request may close this issue.
Comparison expression ORs can get changed to ANDs:
produces
The text was updated successfully, but these errors were encountered: