Проверка шаблона шины для iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
191B

  1. def isNotKeyword(str):
  2. keywords = [
  3. "ex",
  4. "recent",
  5. "set",
  6. "toggle",
  7. "toggleNil",
  8. "vm",
  9. "$vm"
  10. ]
  11. return str not in keywords