OpenCog Framework  Branch: master, revision 6f0b7fc776b08468cf1b74aa9db028f387b4f0c0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
__init__.py
Go to the documentation of this file.
1 from pkgutil import extend_path
2 __path__ = extend_path(__path__, __name__)
3 
4 # The above addresses the issues that came up in
5 # https://github.com/opencog/atomspace/issues/20
6 # Basically, the various python modules are split over multiple
7 # directories, including the build directories. See this:
8 # http://stackoverflow.com/questions/2699287/what-is-path-useful-for
9 # for an explanation.