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 565593 - PyGTK 2.13.0 'make check' fails with Python 2.6 due to ihooks issue
PyGTK 2.13.0 'make check' fails with Python 2.6 due to ihooks issue
Status: RESOLVED FIXED
Product: pygtk
Classification: Bindings
Component: general
2.13.x
Other All
: Normal major
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
: 570281 577870 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2008-12-25 02:25 UTC by Adam Williamson
Modified: 2009-05-02 13:17 UTC
See Also:
GNOME target: ---
GNOME version: 2.25/2.26


Attachments
patch for pygobject (7.45 KB, patch)
2009-04-16 19:34 UTC, Paul Pogonyshev
committed Details | Review

Description Adam Williamson 2008-12-25 02:25:06 UTC
Please describe the problem:
See summary. Due to Python issue #4244, I think - http://bugs.python.org/issue4244 - doing 'make check' after building PyGTK 2.13.0 against Python 2.6 fails:

make[2]: Entering directory `/home/mandrake/rpm/BUILD/pygtk-2.13.0/tests'
Traceback (most recent call last):
  • File "./runtests.py", line 22 in <module>
    srcDir=srcDir)
  • File "/home/mandrake/rpm/BUILD/pygtk-2.13.0/tests/common.py", line 19 in importModules
    atk = importModule('atk', buildDir)
  • File "/home/mandrake/rpm/BUILD/pygtk-2.13.0/tests/common.py", line 51 in importModule
    obj = __import__(module, {}, {}, fromlist)
  • File "/usr/lib/python2.6/ihooks.py", line 406 in import_module
    q, tail = self.find_head_package(parent, str(name))
  • File "/usr/lib/python2.6/ihooks.py", line 442 in find_head_package
    q = self.import_it(head, qname, parent)
  • File "/usr/lib/python2.6/ihooks.py", line 497 in import_it
    m = self.loader.load_module(fqname, stuff)
  • File "/usr/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 "/usr/lib/python2.6/ihooks.py", line 174 in load_dynamic
    return imp.load_dynamic(name, filename, file)
ImportError: could not import gobject (error was: 'import_module() takes at most 5 arguments (6 given)')

Upstream seem to say that you shouldn't use ihooks any more:

"ihooks is undocumented and deprecated, so I doubt anything will be done
about that."

so pygtk should stop using it, I guess. Or fix this issue somehow.

Steps to reproduce:
1. Build PyGTK 2.13.0 against Python 2.6
2. Try and run 'make check'
3. 


Actual results:
Error above.

Expected results:
Successful check.

Does this happen every time?
Yes.

Other information:
Comment 1 Gian Mario Tagliaretti 2009-02-14 11:45:52 UTC
*** Bug 570281 has been marked as a duplicate of this bug. ***
Comment 2 Daniel Macks 2009-03-25 01:57:47 UTC
Could someone clarify whether this is a bug in the test suite or in pygobject itself? "Can't even pass its own self-tests on multiple platforms" is hella-serious-sounding, but if it's "only" because the test itself is broken, I'd feel more comfortable deploying it to my users.
Comment 3 Daniel Macks 2009-04-03 19:53:35 UTC
Following up myself, pygobject itself is what appears to completely unusable with python26 (per Bug #577870) not just a self-test problem.
Comment 4 Gian Mario Tagliaretti 2009-04-05 19:55:09 UTC
(In reply to comment #2)

"Can't even pass its own self-tests on multiple platforms" is
> hella-serious-sounding, but if it's "only" because the test itself is broken,

This is open source my friend, if you feel like something is broken see if you can help, not everyone cat test things on multiple platforms, e.g. I can't.


Comment 5 Gian Mario Tagliaretti 2009-04-05 19:56:29 UTC
*** Bug 577870 has been marked as a duplicate of this bug. ***
Comment 6 Daniel Macks 2009-04-05 22:00:17 UTC
ihooks is not present in python3, so could backport some of the work happening for Bug #566641 to get around this API problem. Presently http://github.com/philn/pygobject/blob/d7159d92a276a2a1be0466700072c0896e72a82b/ltihooks.py has a work-around/alternate solution for python3 and leaves python2 using the ihooks approach. I don't know enough python to say how much of the python3 solution is directly (or even conceptually with tweaks) amenable to python2.
Comment 7 Paul Pogonyshev 2009-04-16 19:34:42 UTC
Created attachment 132785 [details] [review]
patch for pygobject

This is a patch to completely get rid of 'ltihooks.py' for PyGObject.  If it works, creating a similar patch for PyGTK is not a problem.

According to results of my investigation, 'ltihooks.py' is actually needed only for one thing: be able to import C modules built in the source tree, but not yet installed.  If the script is removed, the same can be achieved by creating symbolic links for '.so' files from '.libs' directories to one level up.

I'm not sure if what I created is a good / best possible approach, but at least it does (seem) to work fine.  There is some unfortunate duplication of code between the various 'Makefile.am', but I don't see how to do without it.
Comment 8 Paul Pogonyshev 2009-04-18 20:49:01 UTC
Not closing the bug yet, waiting for a patch for PyGTK.
Comment 9 Paul Pogonyshev 2009-05-02 13:17:12 UTC
Similar patch for PyGTK is committed.