From 306283bf358470b7d439822af90051ac62e95bae Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 21 Mar 2014 19:25:54 -0400 Subject: [PATCH] Removed warning for Widget.is_hidden property. refs #22137. --- django/forms/widgets.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/django/forms/widgets.py b/django/forms/widgets.py index 81333e16fc..11a8806e27 100644 --- a/django/forms/widgets.py +++ b/django/forms/widgets.py @@ -6,12 +6,10 @@ from __future__ import unicode_literals import copy from itertools import chain -import warnings from django.conf import settings from django.forms.utils import flatatt, to_current_timezone from django.utils.datastructures import MultiValueDict, MergeDict -from django.utils.deprecation import RemovedInDjango18Warning from django.utils.encoding import force_text, python_2_unicode_compatible from django.utils.html import conditional_escape, format_html from django.utils.translation import ugettext_lazy @@ -187,14 +185,6 @@ class Widget(six.with_metaclass(MediaDefiningClass)): def is_hidden(self): return self.input_type == 'hidden' if hasattr(self, 'input_type') else False - @is_hidden.setter - def is_hidden(self, *args): - warnings.warn( - "`is_hidden` property is now read-only (and checks `input_type`). " - "Please update your code.", - RemovedInDjango18Warning, stacklevel=2 - ) - def subwidgets(self, name, value, attrs=None, choices=()): """ Yields all "subwidgets" of this widget. Used only by RadioSelect to