From fc0e8d19d02c3d2f9566b642b8098860e12419df 2015-01-08 18:43:38 From: Jason Grout Date: 2015-01-08 18:43:38 Subject: [PATCH] python3 does not like adding lists and map results Thanks to @takluyver for pointing this out --- diff --git a/IPython/html/widgets/widget.py b/IPython/html/widgets/widget.py index 340d47d..fcb76c0 100644 --- a/IPython/html/widgets/widget.py +++ b/IPython/html/widgets/widget.py @@ -472,7 +472,7 @@ class DOMWidget(Widget): 'bolder', 'lighter', 'initial', - 'inherit', ''] + map(str, range(100,1000,100)), + 'inherit', ''] + list(map(str, range(100,1000,100))), default_value='', sync=True) font_size = CUnicode(sync=True) font_family = Unicode(sync=True)