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

пре 10 месеци
12345678910111213
  1. from readKeyValue import *
  2. class Source:
  3. def __init__(self):
  4. self.name = ""
  5. def parseLine(self, line):
  6. kv = readKeyValue(line)
  7. # Игнорируем всё, что не является ключом со значением.
  8. if kv is None:
  9. return
  10. self.name = kv[1]