Ron Adam wrote:

> It's not an empty tuple, it's an empty parenthesis.  Using tuples it 
> would be.
> 
> (a,) == (,)
> 
> which would be the same as:
> 
> (,) == (,)

 >>> ()
()
 >>> a = ()
 >>> type(a)
<type 'tuple'>
 >>> (,)
   File "<stdin>", line 1
     (,)
      ^
SyntaxError: invalid syntax

You've wandered way off into the woods now.

-- 
Erik Max Francis && [EMAIL PROTECTED] && http://www.alcyone.com/max/
San Jose, CA, USA && 37 20 N 121 53 W && AIM erikmaxfrancis
   But since when can wounded eyes see / If we weren't who we were
   -- Joi
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to