[Tutor] Can this be done easly

Peter Otten __peter__ at web.de
Sun Sep 19 18:04:25 CEST 2010


Roelof Wobben wrote:

> When I change everything to this :

> I get this message :
>  
> Traceback (most recent call last):
>   File "C:\Users\wobben\workspace\oefeningen\src\test.py", line 13, in
>   <module>
>     rechthoek = Rectangle (punt,20,30)
> TypeError: object.__new__() takes no parameters

Hint: why does this work:
  
>      def __init__(self, x=0, y=0):

...while this doesnt:

>     def _init_(self, base_point, width=0, length=0):

Peter



More information about the Tutor mailing list