Exemple #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)
Exemple #2
0
def country_code(code):
    return is_country_code(code)
Exemple #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)
Exemple #4
0
def country_code(code):
    return is_country_code(code)