Mark Melvin wrote:
If you take the 01-application.py sample and change the import line to the following:

from GUI.Applications import Application
from GUI.Windows import Window

That doesn't work any more. You must import them directly
from the GUI namespace:

    from GUI import Application
    from GUI import Window

See the notes on 2.5 modifications in CHANGES.txt for full
details

I was only doing it to make py2exe work.

You don't have to do that any more. Py2exe and py2app will
find them automatically now if you import them as shown.

--
Greg
_______________________________________________
Pygui mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pygui

Reply via email to