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 @@ __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/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. # # 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/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. # Based on functions from the base bb module, Copyright 2003 Holger Schurig __version__ = '1.0' -__all__ = [ 'ConfHandler', 'BBHandler'] - import ConfHandler import BBHandler