Commit 9ad2ef33 authored by Honza Král's avatar Honza Král
Browse files

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
parent 5a55922b
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ 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

@@ -70,6 +70,10 @@ class CZBirthNumberField(Field):
        # In case that all possible number are already used (for given date),
        # 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':