On Sat, Jun 5, 2010 at 3:08 PM, Gael Varoquaux <[email protected]> wrote: > On Sat, Jun 05, 2010 at 06:03:04PM -0400, Alan Bromborsky wrote: >> Are there any plans in python to allow python variables to be designated >> in the program by unicode strings as opposed to the current ASCII >> strings? > > Yes, and its going to be a horrible mess: different people are going to > be able to enter different code that others can't type without doing > copy-paste. In addition, think of the bugs with glyphs that are almost > similar...
Yeah. Well, I think that in sympy itself we should have a strict limit to use ascii < 127 only, and we are fine (we'll have a test for this, just like our whitespace test). Then in user programs, one could type stuff like: Ondřej = 5 Gaël = 6 print Ondřej + Gaël then there should be no problems at all. Ondrej -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
