]> code.ossystems Code Review - openembedded-core.git/commitdiff
Drop __all__ usage
authorChris Larson <chris_larson@mentor.com>
Fri, 9 Apr 2010 18:51:29 +0000 (11:51 -0700)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 2 Jul 2010 14:41:33 +0000 (15:41 +0100)
(Bitbake rev: b4983cc7bfe5300c1d2904f34fb03d4fb2f41d90)

Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
bitbake/lib/bb/__init__.py
bitbake/lib/bb/parse/__init__.py
bitbake/lib/bb/parse/parse_py/__init__.py

index c0d1b3041eb7ca057854702f35ed61520cf8c870..8bda65e195bb5bb54c1074c4a061a21ec53b638c 100644 (file)
 
 __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
 
index 4c7a98f3301eaf4cddd65034fc04c31b4f6fff56..adc1408b9e83bf065728f752e0fd59edae9c2195 100644 (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
index 9e0e00addafabc9f5226fe7563fe56c1ccdec13f..a900101784eab37aee01ef174bf502c1924ab6b2 100644 (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