summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/waste/wastesupport.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-09-08 10:21:44 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-09-08 10:21:44 (GMT)
commitfa1e27d8d2a907be656f07a43c00d0ec379c5c54 (patch)
tree322710197943abe76538bfbc1e34382c97d3b2c2 /Mac/Modules/waste/wastesupport.py
parent65c3ee0f66e3f5231610fdc1f65effc1a8b59e9e (diff)
downloadcpython-fa1e27d8d2a907be656f07a43c00d0ec379c5c54.zip
cpython-fa1e27d8d2a907be656f07a43c00d0ec379c5c54.tar.gz
cpython-fa1e27d8d2a907be656f07a43c00d0ec379c5c54.tar.bz2
Got rid of Py_FatalError calls.
Diffstat (limited to 'Mac/Modules/waste/wastesupport.py')
-rw-r--r--Mac/Modules/waste/wastesupport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py
index 371ae8b..e2268ee 100644
--- a/Mac/Modules/waste/wastesupport.py
+++ b/Mac/Modules/waste/wastesupport.py
@@ -292,7 +292,7 @@ class WEOObjectDefinition(GlobalObjectDefinition):
variablestuff = """
callbackdict = PyDict_New();
if (callbackdict == NULL || PyDict_SetItemString(d, "callbacks", callbackdict) != 0)
- Py_FatalError("can't initialize Waste.callbackdict");
+ return;
upp_new_handler = NewWENewObjectProc(my_new_handler);
upp_dispose_handler = NewWEDisposeObjectProc(my_dispose_handler);
upp_draw_handler = NewWEDrawObjectProc(my_draw_handler);