Проверка шаблона шины для 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.

13 lines
207B

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