On Tuesday, 29 September 2015 03:06:53 UTC+2, Kate MacInnis wrote: > > Oh, sure. Didn't mean to imply that it doesn't, I'm just happy that I can > start my next project using sympy and python 3.5. > > Although, I am confused-- how can it be a bug in fastcache if it only > shows up when fastcache isn't installed? > > Just trying a blind guess: maybe it's the order of dicts and sets which was varied in Python 3.5?
I mean, there might be some code which relies on the order of elements in a dict or set, which of course is a bug, as those data structures are supposed to be unordered. A slight change the data structures for dict/set between Python versions might cause such a bug. -- 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 [email protected]. To post to this group, send email to [email protected]. 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/b30370b1-10cf-4bcd-8d22-a785f0762ce0%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
