예제 #1
0
파일: __init__.py 프로젝트: nivertech/aleph
 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)