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

isNotKeyword.py 191B

10 months ago
1234567891011
  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