Drop __all__ usage

(Bitbake rev: b4983cc7bfe5300c1d2904f34fb03d4fb2f41d90)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Chris Larson 2010-04-09 11:51:29 -07:00 committed by Richard Purdie
parent 266f416446
commit 0b4ad7062b
3 changed files with 0 additions and 34 deletions

View File

@ -23,36 +23,6 @@
__version__ = "1.9.0"
__all__ = [
"debug",
"note",
"error",
"fatal",
"mkdirhier",
"movefile",
"vercmp",
# fetch
"decodeurl",
"encodeurl",
# modules
"parse",
"data",
"command",
"event",
"build",
"fetch",
"manifest",
"methodpool",
"cache",
"runqueue",
"taskdata",
"providers",
]
import os
import bb.msg

View File

@ -24,8 +24,6 @@ File parsers for the BitBake build tools.
#
# Based on functions from the base bb module, Copyright 2003 Holger Schurig
__all__ = [ 'ParseError', 'SkipPackage', 'cached_mtime', 'mark_dependency',
'supports', 'handle', 'init' ]
handlers = []
import bb, os

View File

@ -27,7 +27,5 @@ File parsers for the BitBake build tools.
# Based on functions from the base bb module, Copyright 2003 Holger Schurig
__version__ = '1.0'
__all__ = [ 'ConfHandler', 'BBHandler']
import ConfHandler
import BBHandler