Comment 7 for bug 875399

Revision history for this message
Evan Broder (broder) wrote :

Verified from oneiric-proposed - I can explicitly import both Gdk-2.0 and Gdk-3.0

evan@caron:~$ python
Python 2.7.2+ (default, Oct 4 2011, 20:06:09)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
>>> gi.require_version('Gdk', '2.0')
>>> from gi.repository import Gdk
>>> Gdk
<gi.module.DynamicModule 'Gdk' from '/usr/lib/girepository-1.0/Gdk-2.0.typelib'>

evan@caron:~$ python
Python 2.7.2+ (default, Oct 4 2011, 20:06:09)
[GCC 4.6.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import gi
>>> gi.require_version('Gdk', '3.0')
>>> from gi.repository import Gdk
>>> Gdk
<gi.module.DynamicModule 'Gdk' from '/usr/lib/girepository-1.0/Gdk-3.0.typelib'>

Chris and Martin, thanks for the quick turnaround on this!