On 6/6/07, Marc 'BlackJack' Rintsch <[EMAIL PROTECTED]> wrote:
> In <[EMAIL PROTECTED]>, Francesco
> Guerrieri wrote:
>
> > Now the question is this:
> > I would like to initialize such an object in this way:
> > a = myList()
> > a = [[1, 2, 3], [4, 5, 6, 7]]
> > a.pad()
> > # and now a _should_ co
In <[EMAIL PROTECTED]>, Francesco
Guerrieri wrote:
> Now the question is this:
> I would like to initialize such an object in this way:
> a = myList()
> a = [[1, 2, 3], [4, 5, 6, 7]]
> a.pad()
> # and now a _should_ contain [[1, 2, 3, ""], [4, 5, 6, 7]]
>
>
> Obviously this doesn't work, because