summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 11:51:29 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:33 +0100
commit0b4ad7062b7586c17eed161060a03b3d2690341d (patch)
tree46998a2b63dd88c4706c98face3d53599afd0dd2
parent266f41644659165bf4d1c50ed9dafbb44d0693c3 (diff)
downloadpoky-0b4ad7062b7586c17eed161060a03b3d2690341d.tar.gz
Drop __all__ usage
(Bitbake rev: b4983cc7bfe5300c1d2904f34fb03d4fb2f41d90) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r--bitbake/lib/bb/__init__.py30
-rw-r--r--bitbake/lib/bb/parse/__init__.py2
-rw-r--r--bitbake/lib/bb/parse/parse_py/__init__.py2
3 files changed, 0 insertions, 34 deletions
diff --git a/bitbake/lib/bb/__init__.py b/bitbake/lib/bb/__init__.py
index c0d1b3041e..8bda65e195 100644
--- a/bitbake/lib/bb/__init__.py
+++ b/bitbake/lib/bb/__init__.py
@@ -23,36 +23,6 @@
23 23
24__version__ = "1.9.0" 24__version__ = "1.9.0"
25 25
26__all__ = [
27
28 "debug",
29 "note",
30 "error",
31 "fatal",
32
33 "mkdirhier",
34 "movefile",
35 "vercmp",
36
37# fetch
38 "decodeurl",
39 "encodeurl",
40
41# modules
42 "parse",
43 "data",
44 "command",
45 "event",
46 "build",
47 "fetch",
48 "manifest",
49 "methodpool",
50 "cache",
51 "runqueue",
52 "taskdata",
53 "providers",
54 ]
55
56import os 26import os
57import bb.msg 27import bb.msg
58 28
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py
index 4c7a98f330..adc1408b9e 100644
--- a/bitbake/lib/bb/parse/__init__.py
+++ b/bitbake/lib/bb/parse/__init__.py
@@ -24,8 +24,6 @@ File parsers for the BitBake build tools.
24# 24#
25# Based on functions from the base bb module, Copyright 2003 Holger Schurig 25# Based on functions from the base bb module, Copyright 2003 Holger Schurig
26 26
27__all__ = [ 'ParseError', 'SkipPackage', 'cached_mtime', 'mark_dependency',
28 'supports', 'handle', 'init' ]
29handlers = [] 27handlers = []
30 28
31import bb, os 29import bb, os
diff --git a/bitbake/lib/bb/parse/parse_py/__init__.py b/bitbake/lib/bb/parse/parse_py/__init__.py
index 9e0e00adda..a900101784 100644
--- a/bitbake/lib/bb/parse/parse_py/__init__.py
+++ b/bitbake/lib/bb/parse/parse_py/__init__.py
@@ -27,7 +27,5 @@ File parsers for the BitBake build tools.
27# Based on functions from the base bb module, Copyright 2003 Holger Schurig 27# Based on functions from the base bb module, Copyright 2003 Holger Schurig
28__version__ = '1.0' 28__version__ = '1.0'
29 29
30__all__ = [ 'ConfHandler', 'BBHandler']
31
32import ConfHandler 30import ConfHandler
33import BBHandler 31import BBHandler