bt2: rename CreationError to MemoryError, handle it in and out of Python bindings
[babeltrace.git] / tests / bindings / python / bt2 / utils.py
index 768462ec09993e7acd6de544c97879e163e1e9ff..fb4003a3e76a452ce6a5e121a26083bae67e330f 100644 (file)
@@ -1,3 +1,21 @@
+#
+# Copyright (C) 2019 EfficiOS Inc.
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; only version 2
+# of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+#
+
 import bt2
 
 # Run callable `func` in the context of a component's __init__ method.  The
@@ -5,6 +23,7 @@ import bt2
 #
 # The value returned by the callable is returned by run_in_component_init.
 
+
 def run_in_component_init(func):
     class MySink(bt2._UserSinkComponent):
         def __init__(self, params):
@@ -14,6 +33,9 @@ def run_in_component_init(func):
         def _consume(self):
             pass
 
+        def _graph_is_configured(self):
+            pass
+
     g = bt2.Graph()
     res_bound = None
     g.add_component(MySink, 'comp')
@@ -31,8 +53,10 @@ def run_in_component_init(func):
     del res_bound
     return res
 
+
 # Create an empty trace class with default values.
 
+
 def get_default_trace_class():
     def f(comp_self):
         return comp_self._create_trace_class()
This page took 0.024632 seconds and 4 git commands to generate.