You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, when trying to escape a quote as-documented, an error occurs. For example:
# This will fail
Assert(False, e"Test \"quoted string\" should work")
# This will also fail
Eval("""
Eval(e"colorbars = ColorBars(720, 480, \"YUY2\")")
""")
The latter example prevents from nesting conditionals or calling any Eval methods that require string parameters, as conditionals are currently implemented.
The error that occurs in both cases is similar to:
Script error: expected a , or )
The text was updated successfully, but these errors were encountered:
Currently, when trying to escape a quote as-documented, an error occurs. For example:
The latter example prevents from nesting conditionals or calling any
Eval
methods that require string parameters, as conditionals are currently implemented.The error that occurs in both cases is similar to:
The text was updated successfully, but these errors were encountered: