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