"Emmanuel" <[EMAIL PROTECTED]> ha scritto nel messaggio
news:[EMAIL PROTECTED]
> I recently upgraded wxpython (and python) on XP using wxPython2.8-
> win32-unicode-2.8.7.1-py25.exe
>
> Now when I run
>
> from wxPython.wx import *
>
> It crashes :

On my win2k with 2.8.4.0 I got:

>>> from wxPython.wx import *

Warning (from warnings module):
  File "__main__", line 1
DeprecationWarning: The wxPython compatibility package is no longer
automatically generated or actively maintained.  Please switch to the wx
package as soon as possible.

I suggest you to try
>>> from wx import *
or better
>>> import wx
(I don't think that importing everything is a good choice)

Enrico


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to