GNOME Bugzilla – Bug 577870
pygobject throws ImportError (on Mac OS X 10.5 Intel)
Last modified: 2009-04-05 19:56:29 UTC
Please describe the problem: My goal was getting PyGTK with Quartz rendering running on OS X. I first tried macports, but they have their own bug http://trac.macports.org/ticket/18956. Then, I tried building PyGTK myself, with the .framework from here http://www.gtk-osx.org/. pygobject-2.16.1 build fine, but on import I get this error. Python is MacPython from python.org. <code> Python 2.6.1 (r261:67515, Dec 6 2008, 16:42:21) [GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import gobject Traceback (most recent call last):
+ Trace 214162
from gobject.constants import *
m = self.load_tail(q, tail)
m = self.import_it(head, mname, m)
m = self.loader.load_module(fqname, stuff)
m = self.hooks.load_source(name, filename, file)
return imp.load_source(name, filename, file)
import gobject._gobject
m = self.hooks.load_dynamic(name, filename, file)
return ihooks.Hooks.load_dynamic(self, name, filename, file)
return imp.load_dynamic(name, filename, file)
</code> Steps to reproduce: 1. Download and install Gtk.framework and friends 2. Build pygobject with that 3. import gobject Actual results: I get an exception from the interpreter. Expected results: It should import without any message. Does this happen every time? Yes. Other information: At first I thought it was only on OS X, but I a quick google revealed this http://bbs.archlinux.org/viewtopic.php?id=60135
dup of Bug #565593?
(In reply to comment #1) > dup of Bug #565593? > Yes, it seems that is is a dup. I've tried with system macpython and it still doesn't work (again ihooks), but gives a different error. localhost: pygobject-2.16.1 lucian$ /System/Library/Frameworks/Python.framework/Versions/2.5/bin/python2.5 Python 2.5.1 (r251:54863, Jan 13 2009, 10:26:13) [GCC 4.0.1 (Apple Inc. build 5465)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import gobject Traceback (most recent call last):
+ Trace 214183
from glib import spawn_async, idle_add, timeout_add, timeout_add_seconds, \
q, tail = self.find_head_package(parent, str(name))
q = self.import_it(head, qname, parent)
m = self.hooks.load_package(name, filename, file)
return imp.load_module(name, file, filename, ("", "", PKG_DIRECTORY))
from glib._glib import *
Referenced from: /Users/lucian/Downloads/pygobject-2.16.1/glib/.libs/_glib.so Expected in: dynamic lookup
*** This bug has been marked as a duplicate of 565593 ***