From 20b6f2d1d2d4541e612e8cffbdf1ca4822a3e394 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Wed, 24 Mar 2010 17:05:38 -0700 Subject: Add some missing docstrings Signed-off-by: Chris Larson --- lib/bb/data.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/bb/data.py') diff --git a/lib/bb/data.py b/lib/bb/data.py index 554532841..e11fe9833 100644 --- a/lib/bb/data.py +++ b/lib/bb/data.py @@ -50,9 +50,12 @@ import bb _dict_type = data_smart.DataSmart def init(): + """Return a new object representing the Bitbake data""" return _dict_type() def init_db(parent = None): + """Return a new object representing the Bitbake data, + optionally based on an existing object""" if parent: return parent.createCopy() else: -- cgit 1.2.3-korg