From 7f200257762ab9730cee6f02be579f8ce70cdb43 2015-01-16 02:21:33 From: Thomas Kluyver Date: 2015-01-16 02:21:33 Subject: [PATCH] Add docstring for IntRangeSlider Closes gh-5381 This was the last remaining widget class I could see without a docstring --- 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,