~ubuntu-branches/ubuntu/saucy/python-django/saucy-updates

« back to all changes in this revision

Viewing changes to django/contrib/localflavor/ca/ca_provinces.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone, Jakub Wilk, Luke Faraone
  • Date: 2013-05-09 15:10:47 UTC
  • mfrom: (1.1.21) (4.4.27 sid)
  • Revision ID: package-import@ubuntu.com-20130509151047-aqv8d71oj9wvcv8c
Tags: 1.5.1-2
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Luke Faraone ]
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
This exists in this standalone file so that it's only imported into memory 
9
9
when explicitly needed. 
10
10
""" 
11
 
import warnings
12
 
warnings.warn(
13
 
    'There have been recent changes to the CA localflavor. See the release notes for details',
14
 
    RuntimeWarning
15
 
)
16
11
 
17
12
PROVINCE_CHOICES = ( 
18
13
    ('AB', 'Alberta'), 
56
51
    'pei': 'PE',
57
52
    'p.e.i.': 'PE',
58
53
    'prince edward island': 'PE',
 
54
    'pq' : 'QC',
59
55
    'qc': 'QC',
60
56
    'quebec': 'QC',
61
57
    'sk': 'SK',