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
There are various ways to specify quotes in python like "x", 'x', '''x''', """x""". Since SimpleString.evalueted_value is a runtime method, it seems the only way to match against all possible ways for user to specify a string is m.SimpleString("'x'") | m.SimpleString('"x"') | m.SimpleString("'''x'''") | m.SimpleString('"""x"""')?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
There are various ways to specify quotes in python like "x", 'x', '''x''', """x""". Since
SimpleString.evalueted_value
is a runtime method, it seems the only way to match against all possible ways for user to specify a string ism.SimpleString("'x'") | m.SimpleString('"x"') | m.SimpleString("'''x'''") | m.SimpleString('"""x"""')
?Beta Was this translation helpful? Give feedback.
All reactions