summaryrefslogtreecommitdiff
path: root/atkmodule.c
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2003-07-24 15:06:08 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-07-24 15:06:08 +0000
commit509bdda1a0db371fccb1d3b8e11a90c8040aaaf9 (patch)
tree8c0801159e4bf2d57ac9f6d7338e524609245052 /atkmodule.c
parent51c69a99945ad3d8f76414e59d6992fe1cae6fcb (diff)
downloadpygtk-509bdda1a0db371fccb1d3b8e11a90c8040aaaf9.tar.gz
same here.
2003-07-24 James Henstridge <james@daa.com.au> * gtk/pygtk.h (init_pygtk): same here. * pygobject.h (init_pygobject): convert fatal errors to normal exceptions. * gtk/gtkglmodule.c (initgl): same here. * gtk/libglademodule.c (initglade): same here. * gtk/gtkmodule.c (init_gtk): same here. * atkmodule.c (initatk): same here. * pangomodule.c (initpango): same here. * gobjectmodule.c (initgobject): don't cause fatal errors if an exception on init. * codegen/codegen.py (write_source): print an error message if it isn't possible to import a particular name from the module. * autogen.sh (DIE): require Automake 1.7. * configure.in (AC_ARG_ENABLE): enable thread support by default.
Diffstat (limited to 'atkmodule.c')
-rw-r--r--atkmodule.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/atkmodule.c b/atkmodule.c
index 47ad7c5b..ca1dbfdc 100644
--- a/atkmodule.c
+++ b/atkmodule.c
@@ -44,8 +44,4 @@ initatk(void)
pyatk_register_classes (d);
pyatk_add_constants(m, "ATK_");
-
- if (PyErr_Occurred ()) {
- Py_FatalError ("can't initialise module atk");
- }
}