Johnny Lee wrote:

> As what you said, the following two code section is totally the same?
> 
> (I)
> class TestResult:
>         _passxxx_ = "pass"
> 
> (II) 
> class TestResult: 
>         passxxx = "pass"

No, of course not.  One defines a class varaible named `_passxxx_', the 
other defines one named `passsxxx'.

-- 
Erik Max Francis && [EMAIL PROTECTED] && http://www.alcyone.com/max/
San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis
   Experience is the name everyone gives to their mistakes.
   -- Oscar Wilde
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to