After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 577870 - pygobject throws ImportError (on Mac OS X 10.5 Intel)
pygobject throws ImportError (on Mac OS X 10.5 Intel)
Status: RESOLVED DUPLICATE of bug 565593
Product: pygobject
Classification: Bindings
Component: gobject
2.16.x
Other All
: Normal blocker
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2009-04-03 18:03 UTC by Lucian
Modified: 2009-04-05 19:56 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Lucian 2009-04-03 18:03:20 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):
  • File "<stdin>", line 1 in <module>
  • File "gobject/__init__.py", line 54 in <module>
    from gobject.constants import *
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 407 in import_module
    m = self.load_tail(q, tail)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 458 in load_tail
    m = self.import_it(head, mname, m)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 497 in import_it
    m = self.loader.load_module(fqname, stuff)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 272 in load_module
    m = self.hooks.load_source(name, filename, file)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 170 in load_source
    return imp.load_source(name, filename, file)
  • File "gobject/constants.py", line 24 in <module>
    import gobject._gobject
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 407 in import_module
    m = self.load_tail(q, tail)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 458 in load_tail
    m = self.import_it(head, mname, m)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 497 in import_it
    m = self.loader.load_module(fqname, stuff)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 270 in load_module
    m = self.hooks.load_dynamic(name, filename, file)
  • File "ltihooks.py", line 50 in load_dynamic
    return ihooks.Hooks.load_dynamic(self, name, filename, file)
  • File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/ihooks.py", line 174 in load_dynamic
    return imp.load_dynamic(name, filename, file)
ImportError: could not import glib (error was: 'import_module() takes at most 5 arguments (6 given)')
</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
Comment 1 Daniel Macks 2009-04-03 19:52:32 UTC
dup of Bug #565593? 
Comment 2 Lucian 2009-04-04 20:05:50 UTC
(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):
  • File "<stdin>", line 1 in <module>
  • File "gobject/__init__.py", line 33 in <module>
    from glib import spawn_async, idle_add, timeout_add, timeout_add_seconds, \
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 404 in import_module
    q, tail = self.find_head_package(parent, str(name))
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 445 in find_head_package
    q = self.import_it(head, qname, parent)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 495 in import_it
    m = self.loader.load_module(fqname, stuff)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 274 in load_module
    m = self.hooks.load_package(name, filename, file)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 174 in load_package
    return imp.load_module(name, file, filename, ("", "", PKG_DIRECTORY))
  • File "glib/__init__.py", line 30 in <module>
    from glib._glib import *
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 405 in import_module
    m = self.load_tail(q, tail)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 456 in load_tail
    m = self.import_it(head, mname, m)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 495 in import_it
    m = self.loader.load_module(fqname, stuff)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 268 in load_module
    m = self.hooks.load_dynamic(name, filename, file)
  • File "ltihooks.py", line 50 in load_dynamic
    return ihooks.Hooks.load_dynamic(self, name, filename, file)
  • File "/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/ihooks.py", line 172 in load_dynamic
    return imp.load_dynamic(name, filename, file)
ImportError: dlopen(glib/.libs/_glib.so, 2): Symbol not found: _PySignal_SetWakeupFd
  Referenced from: /Users/lucian/Downloads/pygobject-2.16.1/glib/.libs/_glib.so
  Expected in: dynamic lookup
Comment 3 Gian Mario Tagliaretti 2009-04-05 19:56:29 UTC

*** This bug has been marked as a duplicate of 565593 ***