--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/dfee71bf-d071-44a8-8772-f8d8f75ae855%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
>>>import sympy
unicode_escape_decode() takes no arguments--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/7cc62e0c-898f-40aa-982b-97231b9f5140%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/b337d123-9ec0-4772-bc2a-94f616b9de53%40googlegroups.com.
One low tech way around this problem is for Andy to fix iron Python compatibility issues in sympy as he runs into them. Presumably he has a suitable environment.
For example he could find where we call this zip and wrap the arguments in a list and submit that as a change to sympy.
Alternatively (and perhaps better in general) is to alert the apparently active IronPython group about these issues.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/ad819f2d-758b-4fa9-940b-f3080718828a%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/fe4c9ff9-bef1-4c9d-a7dd-61aafabe86fe%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CADDwiVBCckDrpjir%3DHMNr%2Boe9wd3MW%3DPqkLXL%3DVDx8G8VVo8Hg%40mail.gmail.com.
def u(x):return codecs.unicode_escape_decode(x)[0]becomes:def u(x):try:return codecs.unicode_escape_decode(x)[0]except:return xThanks, Andy
To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/ebf20aa9-4e43-4cc6-8162-3a8451a503d8%40googlegroups.com.