In <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] wrote:

> oh, well how do I make "derek" be an instance of 'chatuser' ?

Spot the difference::

 In [228]: class A: pass
    .228.:

 In [229]: a = A

 In [230]: repr(a)
 Out[230]: '<class __main__.A at 0x4078883c>'

 In [231]: b = A()

 In [232]: repr(b)
 Out[232]: '<__main__.A instance at 0x4075e52c>'

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to