# HG changeset patch # User Paul Boddie # Date 1105312779 -3600 # Node ID feda623ce900ddac88aa1373909af83899f1b3b1 # Parent 0546fc332f6f6ee047565ee18f12f0a9ec911e34 Introduced removal of skeleton classes. diff -r 0546fc332f6f -r feda623ce900 tools/wrap.py --- a/tools/wrap.py Mon Jan 10 00:19:27 2005 +0100 +++ b/tools/wrap.py Mon Jan 10 00:19:39 2005 +0100 @@ -53,6 +53,11 @@ for method_name, wrapped_method_name in method_names: f.write("setattr(%s, '%s', %s.%s)\n" % (class_name, method_name, class_name, wrapped_method_name)) + # Remove the original class. + + print "Removing", filename + os.remove(filename) + f.close() # vim: tabstop=4 expandtab shiftwidth=4