aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/parse
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2006-10-03 22:34:21 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2006-10-03 22:34:21 +0000
commitf1252d5dab221b267716f09c969ff34e9af711ed (patch)
treea7858eefbe73afc0eca7db8078cf7de9de1a3cef /lib/bb/parse
parent3a54f0ed22aeb00974ce83a2f93a74da367b0fbd (diff)
downloadbitbake-f1252d5dab221b267716f09c969ff34e9af711ed.tar.gz
parse_py/ConfHandler.py: Remove broken default options (as identified by mithro)
Diffstat (limited to 'lib/bb/parse')
-rw-r--r--lib/bb/parse/parse_py/ConfHandler.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bb/parse/parse_py/ConfHandler.py b/lib/bb/parse/parse_py/ConfHandler.py
index 26f8038a8..e651d9233 100644
--- a/lib/bb/parse/parse_py/ConfHandler.py
+++ b/lib/bb/parse/parse_py/ConfHandler.py
@@ -52,7 +52,7 @@ def localpath(fn, d):
localfn = fn
return localfn
-def obtain(fn, data = bb.data.init()):
+def obtain(fn, data):
import sys, bb
fn = bb.data.expand(fn, data)
localfn = bb.data.expand(localpath(fn, data), data)
@@ -83,7 +83,7 @@ def obtain(fn, data = bb.data.init()):
return localfn
-def include(oldfn, fn, data = bb.data.init(), error_out = False):
+def include(oldfn, fn, data, error_out = False):
"""
error_out If True a ParseError will be reaised if the to be included
@@ -103,7 +103,7 @@ def include(oldfn, fn, data = bb.data.init(), error_out = False):
raise ParseError("Could not include required file %(fn)s" % vars() )
bb.msg.debug(2, bb.msg.domain.Parsing, "CONF file '%s' not found" % fn)
-def handle(fn, data = bb.data.init(), include = 0):
+def handle(fn, data, include = 0):
if include:
inc_string = "including"
else:
@@ -160,7 +160,7 @@ def handle(fn, data = bb.data.init(), include = 0):
bb.data.setVar('FILE', oldfile, data)
return data
-def feeder(lineno, s, fn, data = bb.data.init()):
+def feeder(lineno, s, fn, data):
m = __config_regexp__.match(s)
if m:
groupd = m.groupdict()