From 9ad2ef338de10e2d96cb361c7f1162df2db2066c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Fri, 24 Dec 2010 18:19:48 +0000 Subject: [PATCH] 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 --- django/contrib/localflavor/cz/forms.py | 8 ++++++-- 1 file 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':