# HG changeset patch # User Paul Boddie # Date 1102985664 -3600 # Node ID 68c3bfb16cd84bd6b0b80c7193083142ed076a77 # Parent 0e8017ad00536277c3f60dfa9bc9822e611fb537 Added some reminders. diff -r 0e8017ad0053 -r 68c3bfb16cd8 README.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Tue Dec 14 01:54:24 2004 +0100 @@ -0,0 +1,8 @@ +Investigate better exception raising. Currently, exceptions have to be +derived from object so that object.__new__ can be used upon them. However, +this seems to prevent them from being raised, and they need to be wrapped +within Exception so that the information can be transmitted to the +exception's handler. + +Consider nicer ways of writing the method names in Python, perhaps using a +function which takes the individual parameter types as arguments.