summaryrefslogtreecommitdiff
path: root/gtk/__init__.py
diff options
context:
space:
mode:
authorJohan Dahlin <johan@src.gnome.org>2006-07-19 21:49:06 +0000
committerJohan Dahlin <johan@src.gnome.org>2006-07-19 21:49:06 +0000
commit3f5b5f91d6ac1492f4eabcc9031544a91566bffc (patch)
treecb91eb20d3a46da889f4b0b7ff5259085d5d42c8 /gtk/__init__.py
parent2f5d9c61fa16e28b4d53a9c9bfaeacf78111d35b (diff)
downloadpygtk-3f5b5f91d6ac1492f4eabcc9031544a91566bffc.tar.gz
Wrap thread functions too
Diffstat (limited to 'gtk/__init__.py')
-rw-r--r--gtk/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/__init__.py b/gtk/__init__.py
index 01030cab..9b50006c 100644
--- a/gtk/__init__.py
+++ b/gtk/__init__.py
@@ -108,9 +108,9 @@ create_pixmap_from_xpm = _Deprecated(gdk, 'pixmap_create_from_xpm',
create_pixmap_from_xpm_d = _Deprecated(gdk, 'pixmap_create_from_xpm_d',
'pixmap_create_from_xpm_d', 'gtk.gdk')
-threads_init = _Deprecated(gdk.threads_init, 'threads_init', 'gtk.gdk')
-threads_enter = _Deprecated(gdk.threads_enter, 'threads_enter', 'gtk.gdk')
-threads_leave = _Deprecated(gdk.threads_leave, 'threads_leave', 'gtk.gdk')
+threads_init = _Deprecated(gdk, 'threads_init', 'threads_init', 'gtk.gdk')
+threads_enter = _Deprecated(gdk, 'threads_enter', 'threads_enter', 'gtk.gdk')
+threads_leave = _Deprecated(gdk, 'threads_leave', 'threads_leave', 'gtk.gdk')
TRUE = _DeprecatedConstant(True, 'gtk.TRUE', 'True')
FALSE = _DeprecatedConstant(False, 'gtk.FALSE', 'False')