Webware for Python 0.5.1
This change occurred in the last release (0.5), but was not documented in the release notes. We include it here as a reminder:
The proper way to import modules from WebKit, such as Page, is by qualifying the module with WebKit.
For example, this:
from Page import Page
now becomes:
from WebKit.Page import Page
If you previously had WebKit in your Python path please remove it.