diff -r 5ff1fc726848 -r c6bca38c1cbf eggs/zc.buildout-1.5.2-py2.6.egg/zc/buildout/testrecipes.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eggs/zc.buildout-1.5.2-py2.6.egg/zc/buildout/testrecipes.py Sat Jan 08 11:20:57 2011 +0530 @@ -0,0 +1,16 @@ + +class Debug: + + def __init__(self, buildout, name, options): + self.buildout = buildout + self.name = name + self.options = options + + def install(self): + items = self.options.items() + items.sort() + for option, value in items: + print " %s=%r" % (option, value) + return () + + update = install