|
Revision 7294, 1.0 kB
(checked in by mtredinnick, 7 months ago)
|
Added "svn:eol-style native" to every text file in the tree (*.txt, *.html,
*.py, *.xml and AUTHORS, etc). Added "svn:ignore *.pyc" to some directories in
tests/regressiontests/ that were previously missing it.
Fixed #6545, #6801.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
# -*- coding: utf-8 -*- |
|---|
| 2 |
""" |
|---|
| 3 |
A list of Argentinean provinces and autonomous cities as `choices` in a |
|---|
| 4 |
formfield. From |
|---|
| 5 |
http://www.argentina.gov.ar/argentina/portal/paginas.dhtml?pagina=425 |
|---|
| 6 |
|
|---|
| 7 |
This exists in this standalone file so that it's only imported into memory |
|---|
| 8 |
when explicitly needed. |
|---|
| 9 |
""" |
|---|
| 10 |
|
|---|
| 11 |
PROVINCE_CHOICES = ( |
|---|
| 12 |
('B', u'Buenos Aires'), |
|---|
| 13 |
('K', u'Catamarca'), |
|---|
| 14 |
('H', u'Chaco'), |
|---|
| 15 |
('U', u'Chubut'), |
|---|
| 16 |
('C', u'Ciudad Autónoma de Buenos Aires'), |
|---|
| 17 |
('X', u'Córdoba'), |
|---|
| 18 |
('W', u'Corrientes'), |
|---|
| 19 |
('E', u'Entre Ríos'), |
|---|
| 20 |
('P', u'Formosa'), |
|---|
| 21 |
('Y', u'Jujuy'), |
|---|
| 22 |
('L', u'La Pampa'), |
|---|
| 23 |
('F', u'La Rioja'), |
|---|
| 24 |
('M', u'Mendoza'), |
|---|
| 25 |
('N', u'Misiones'), |
|---|
| 26 |
('Q', u'Neuquén'), |
|---|
| 27 |
('R', u'Río Negro'), |
|---|
| 28 |
('A', u'Salta'), |
|---|
| 29 |
('J', u'San Juan'), |
|---|
| 30 |
('D', u'San Luis'), |
|---|
| 31 |
('Z', u'Santa Cruz'), |
|---|
| 32 |
('S', u'Santa Fe'), |
|---|
| 33 |
('G', u'Santiago del Estero'), |
|---|
| 34 |
('V', u'Tierra del Fuego, Antártida e Islas del Atlántico Sur'), |
|---|
| 35 |
('T', u'Tucumán'), |
|---|
| 36 |
) |
|---|