Joop,
I haven't been able to recreate your error.
Please specify your version of Python and OS, and explain the steps required
to recreate this error.
- Tal
On 28/11/06, *Joop Kaldeway* <[EMAIL PROTECTED]> wrote:
Dear idle-developers,.
I have the following problem:
I use the very simple
Dear idle-developers,.
I have the following problem:
I use the very simple program:
class NewClass(object):
def __init__(self,element):
self.element = element
def __repr__(self):
return str(self.element)
if __name__ == '__main__':
b = NewClass(3)
print b