示例#1
0
 def add_country(self, country):
     country = chomp(country, lower=True)
     if is_country_code(country) and country not in self._countries:
         self._countries.append(country)
示例#2
0
def country_code(code):
    return is_country_code(code)
示例#3
0
 def add_country(self, country):
     country = chomp(country, lower=True)
     if is_country_code(country) and country not in self._countries:
         self._countries.append(country)
示例#4
0
def country_code(code):
    return is_country_code(code)