I\'m trying to follow PEP 328, with the following directory structure:
pkg/ __init__.py components/ core.py __init__.py tests/ core_test.py
In core_test.py, do the following:
import sys sys.path.append('../components') from core import GameLoopEvents