[Zope] Parameters for external methods and page templates

Dieter Maurer dieter@handshake.de
Thu, 12 Sep 2002 23:36:34 +0200


Andreas Tille writes:
 >       def MakeThumbHi2(self, image="bland.gif", width, height):
 >                        ^^^^
This is invalid Python. You must not have arguments without default
after one with a default value.


Dieter