add prevent_to_get_display_during_import.patch (by Aloisio Almeida)
authorMichael Lauer <mickey@vanille-media.de>
Thu, 20 Mar 2008 22:11:32 +0000 (22:11 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Thu, 20 Mar 2008 22:11:32 +0000 (22:11 +0000)
packages/python/python-pygtk/prevent_to_get_display_during_import.patch [new file with mode: 0644]

diff --git a/packages/python/python-pygtk/prevent_to_get_display_during_import.patch b/packages/python/python-pygtk/prevent_to_get_display_during_import.patch
new file mode 100644 (file)
index 0000000..db3469e
--- /dev/null
@@ -0,0 +1,14 @@
+Index: pygtk-2.10.4/gtk/__init__.py
+===================================================================
+--- pygtk-2.10.4.orig/gtk/__init__.py  2007-11-27 19:27:05.000000000 -0300
++++ pygtk-2.10.4/gtk/__init__.py       2007-11-27 19:28:22.000000000 -0300
+@@ -78,7 +78,8 @@
+ keysyms = LazyModule('keysyms', locals())
+-_init()
++if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
++    init()
+ # CAPI
+ _PyGtk_API = _gtk._PyGtk_API