Trees | Index | Help |
---|
Package flumotion :: Package common :: Module package |
|
Classes | |
---|---|
PackageHooks |
I am an import Hooks object that makes sure that every package that gets loaded has every necessary path in the module's __path__ list. |
Packager |
I am an object through which package paths can be registered, to support the partitioning of the module import namespace across bundles. |
Function Summary | |
---|---|
I take a directory and return a list of candidate python end modules (i.e., non-package modules) for the given module prefix. | |
Packager
|
Return the (unique) packager. |
I take a directory and return a list of candidate python packages under that directory that start with the given prefix. | |
I'm similar to os.listdir, but I work recursively and only return directories containing python code. | |
list |
I'm similar to os.listdir, but I work recursively and only return files representing python non-package modules. |
Function Details |
---|
findEndModuleCandidates(path, prefix='flumotion')I take a directory and return a list of candidate python end modules (i.e., non-package modules) for the given module prefix.
|
getPackager()Return the (unique) packager.
|
_findPackageCandidates(path, prefix='flumotion')I take a directory and return a list of candidate python packages under that directory that start with the given prefix. A package is a module containing modules; typically the directory with the same name as the package contains __init__.py
|
_listDirRecursively(path)I'm similar to os.listdir, but I work recursively and only return directories containing python code.
|
_listPyFileRecursively(path)I'm similar to os.listdir, but I work recursively and only return files representing python non-package modules.
|
Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Sat Apr 14 13:11:55 2007 | http://epydoc.sf.net |