summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHonza Král <honza.kral@gmail.com>2010-12-24 18:19:48 +0000
committerHonza Král <honza.kral@gmail.com>2010-12-24 18:19:48 +0000
commit9ad2ef338de10e2d96cb361c7f1162df2db2066c (patch)
tree6c1f3591040da306eaaeaf6ec6d300af67100a6a
parent5a55922baa5356d34d1c5b6c0ffee29fb7f7c66a (diff)
Fixed #14593 -- Deprecating CZBirthNumberField's second argument to clean()
Gender is not necessary to determine whether a birth number is valid, it just validates some further restrictions and shouldn't be part of the field's validation. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15048 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/localflavor/cz/forms.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/django/contrib/localflavor/cz/forms.py b/django/contrib/localflavor/cz/forms.py
index 655e5ce4de..13a94af05c 100644
--- a/django/contrib/localflavor/cz/forms.py
+++ b/django/contrib/localflavor/cz/forms.py
@@ -62,14 +62,18 @@ class CZBirthNumberField(Field):
birth, id = match.groupdict()['birth'], match.groupdict()['id']
- # Three digits for verificatin number were used until 1. january 1954
+ # Three digits for verification number were used until 1. january 1954
if len(id) == 3:
return u'%s' % value
# Birth number is in format YYMMDD. Females have month value raised by 50.
# In case that all possible number are already used (for given date),
- # the month field is raised by 20.
+ # the month field is raised by 20.
if gender is not None:
+ import warnings
+ warnings.warn(
+ "Support for validating the gender of a CZ Birth number has been deprecated.",
+ DeprecationWarning)
if gender == 'f':
female_const = 50
elif gender == 'm':