App Engine Python SDK version 1.8.0
[gae.git] / python / lib / django-1.5 / django / contrib / localflavor / uk / forms.py
blob14624bc15fe3965dfbe667e8feb134d6a8e17f0e
1 from django.contrib.localflavor.gb import forms
3 import warnings
4 warnings.warn(
5 'The "UK" prefix for United Kingdom has been deprecated in favour of the '
6 'GB code. Please use the new GB-prefixed names.', DeprecationWarning)
8 UKPostcodeField = forms.GBPostcodeField
9 UKCountySelect = forms.GBCountySelect
10 UKNationSelect = forms.GBNationSelect