fre 2004-05-07 klockan 16.54 skrev Alex Rada: > Using matplotlib (a graphical package for python) I encountered the > following warning: > Gtk-WARNING **: /usr/lib/gtk-2.0/2.2.0/engines/libredmond95.so: > undefined symbol: gtk_widget_get_direction > Alex.
You need to link the libredmond95 theme library against libgtk, since it uses symbols for it. Report a bug against it. Meanwhile, use the following code (before importing gtk) to *workaround* the problem: sys.setdlopenflags(dl.RTLD_LAZY | dl.RTLD_GLOBAL) -- Johan Dahlin <[EMAIL PROTECTED]> _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
