diff options
| author | Tim Graham <timograham@gmail.com> | 2014-03-21 19:25:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-03-21 19:25:54 -0400 |
| commit | 306283bf358470b7d439822af90051ac62e95bae (patch) | |
| tree | 68efe4cc07843e0c060caa465c3f15d1a7d043c0 | |
| parent | e80de93af6a0a21a9063a55c4d6d20e3927243e9 (diff) | |
Removed warning for Widget.is_hidden property.
refs #22137.
| -rw-r--r-- | django/forms/widgets.py | 10 |
1 files changed, 0 insertions, 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 |
