On Mon, Jun 20, 2011 at 6:19 PM, Greg Ewing <[email protected]>wrote:

> 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.
>
>
OK - my app closes without hanging now.  I'll try py2exe and see if the new
import scheme works.

Thanks!
Mark.
_______________________________________________
Pygui mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pygui

Reply via email to