summaryrefslogtreecommitdiff
path: root/django/forms/widgets.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-21 11:18:04 -0400
committerTim Graham <timograham@gmail.com>2014-03-21 11:18:04 -0400
commit797d742662a47417ab875b7a1f5d7919caf5363f (patch)
treeaecc6a0a9d70bebbd1abf1ab9d819a67af045aa2 /django/forms/widgets.py
parentf6c1f05fbf8fdf980c91666d1c14990632e18503 (diff)
Removed django.forms.widgets.RadioInput per deprecation timeline.
refs #4592.
Diffstat (limited to 'django/forms/widgets.py')
-rw-r--r--django/forms/widgets.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/django/forms/widgets.py b/django/forms/widgets.py
index 53003749d3..81333e16fc 100644
--- a/django/forms/widgets.py
+++ b/django/forms/widgets.py
@@ -634,13 +634,6 @@ class RadioChoiceInput(ChoiceInput):
self.value = force_text(self.value)
-class RadioInput(RadioChoiceInput):
- def __init__(self, *args, **kwargs):
- msg = "RadioInput has been deprecated. Use RadioChoiceInput instead."
- warnings.warn(msg, RemovedInDjango18Warning, stacklevel=2)
- super(RadioInput, self).__init__(*args, **kwargs)
-
-
class CheckboxChoiceInput(ChoiceInput):
input_type = 'checkbox'