summaryrefslogtreecommitdiff
path: root/packages/python/python-pygtk
diff options
context:
space:
mode:
authorOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2008-03-22 11:12:50 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2008-03-22 11:12:50 +0000
commit8e73e9517a7d9e4c5273cf8c3bf4420ab6adb3e2 (patch)
tree4f2ccf85f1d7497c5cb3d2ce456db8151d5bdd79 /packages/python/python-pygtk
parentb6ae8ef31690d3a1a829eaa734828075eacc1fd4 (diff)
parent471667fb417dcf2fa437393690764c187ca29b7e (diff)
merge of 'b5c2080b62dd6480fdd3b3687e291ee915379afd'
and 'c49f478890b0d92c1c59e4c0cf0d74b6990e6745'
Diffstat (limited to 'packages/python/python-pygtk')
-rw-r--r--packages/python/python-pygtk/prevent_to_get_display_during_import.patch14
1 files changed, 14 insertions, 0 deletions
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
index 0000000000..db3469ef57
--- /dev/null
+++ b/packages/python/python-pygtk/prevent_to_get_display_during_import.patch
@@ -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