From a7a20903043052107f03283c0de2cdf939c587bd 2015-01-16 03:00:26 From: Kyle Kelley Date: 2015-01-16 03:00:26 Subject: [PATCH] Merge pull request #7483 from takluyver/i5831 Add docstring for IntRangeSlider --- diff --git a/IPython/html/widgets/widget_int.py b/IPython/html/widgets/widget_int.py index ff6efdc..73ca5cf 100644 --- a/IPython/html/widgets/widget_int.py +++ b/IPython/html/widgets/widget_int.py @@ -186,6 +186,7 @@ class _BoundedIntRange(_IntRange): @register('IPython.IntRangeSlider') class IntRangeSlider(_BoundedIntRange): + """Slider widget that represents a pair of ints between a minimum and maximum value.""" _view_name = Unicode('IntSliderView', sync=True) orientation = CaselessStrEnum(values=['horizontal', 'vertical'], default_value='horizontal', allow_none=False,