[sage-devel] Re: Generator Expressions Weirdness

2011-09-20 Thread jireva
On Sep 20, 6:08 pm, Nils Bruin wrote: > It's actually just as big a problem as the third example you give: Oh, haha, yes it is. >http://trac.sagemath.org/sage_trac/ticket/7496 >should partly deal with the nasty bits of this problem. Great! > The assumption that var(("a","b","c")) or var (["a",

[sage-devel] Generator Expressions Weirdness

2011-09-20 Thread jireva
Hello everyone, The following creates three variables ``a``, ``b``, and ``c``:: sage: var('a, b, c') (a, b, c) I would expect this to do the same thing:: sage: var(('a', 'b', 'c')) (('a', 'b', 'c')) It doesn't, but that's not too big a problem... This should *d