From d6d4f5364169ab3a2e12045e065dedc4914a744c 2014-07-21 20:18:49
From: Jonathan Frederic <jdfreder@calpoly.edu>
Date: 2014-07-21 20:18:49
Subject: [PATCH] Merge pull request #6153 from jasongrout/container-children-arg

Make Container widgets take children as the first positional argument
---

diff --git a/IPython/html/widgets/widget_container.py b/IPython/html/widgets/widget_container.py
index dce2a2f..6ba8206 100644
--- a/IPython/html/widgets/widget_container.py
+++ b/IPython/html/widgets/widget_container.py
@@ -15,9 +15,10 @@ class ContainerWidget(DOMWidget):
     # Child widgets in the container.
     # Using a tuple here to force reassignment to update the list.
     # When a proper notifying-list trait exists, that is what should be used here.
-    children = Tuple(sync=True)
+    children = Tuple(sync=True, allow_none=False)
 
-    def __init__(self, **kwargs):
+    def __init__(self, children = (), **kwargs):
+        kwargs['children'] = children
         super(ContainerWidget, self).__init__(**kwargs)
         self.on_displayed(ContainerWidget._fire_children_displayed)