summaryrefslogtreecommitdiffstats
path: root/lib/bb
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-04-09 11:51:29 -0700
committerChris Larson <chris_larson@mentor.com>2010-04-09 19:38:54 -0700
commitb4983cc7bfe5300c1d2904f34fb03d4fb2f41d90 (patch)
tree7e576238197e645b1739e7e2a2f9d1aacba9ec8a /lib/bb
parenteb83df5bc7077685f314df01949cf06850e4693c (diff)
downloadbitbake-b4983cc7bfe5300c1d2904f34fb03d4fb2f41d90.tar.gz
Drop __all__ usage
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb')
-rw-r--r--lib/bb/__init__.py30
-rw-r--r--lib/bb/parse/__init__.py2
-rw-r--r--lib/bb/parse/parse_py/__init__.py2
3 files changed, 0 insertions, 34 deletions
diff --git a/lib/bb/__init__.py b/lib/bb/__init__.py
index c0d1b3041..8bda65e19 100644
--- a/lib/bb/__init__.py
+++ b/lib/bb/__init__.py
@@ -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
diff --git a/lib/bb/parse/__init__.py b/lib/bb/parse/__init__.py
index 4c7a98f33..adc1408b9 100644
--- a/lib/bb/parse/__init__.py
+++ b/lib/bb/parse/__init__.py
@@ -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
diff --git a/lib/bb/parse/parse_py/__init__.py b/lib/bb/parse/parse_py/__init__.py
index 9e0e00add..a90010178 100644
--- a/lib/bb/parse/parse_py/__init__.py
+++ b/lib/bb/parse/parse_py/__init__.py
@@ -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