Re: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead)

2005-10-17 Thread arotem
Thanks... it solves the problem :-) -- http://mail.python.org/mailman/listinfo/python-list

Re: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead)

2005-10-17 Thread arotem
Thanks... it solves the problem :-) -- http://mail.python.org/mailman/listinfo/python-list

TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead)

2005-10-16 Thread arotem
Hi, I am trying to call an unbound method (PrintInput) with the object instance as the first argument but getting the following error: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead) Below is the sample code (test) for this

Re: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead)

2005-10-16 Thread Diez B. Roggisch
arotem wrote: Hi, I am trying to call an unbound method (PrintInput) with the object instance as the first argument but getting the following error: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead) Below is the sample

Re: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead)

2005-10-16 Thread Peter Otten
arotem wrote: Hi, I am trying to call an unbound method (PrintInput) with the object instance as the first argument but getting the following error: TypeError: unbound method PrintInput() must be called with test instance as first argument (got test instance instead) Below is the sample