Re: Issue 834 in sympy: hasattr(Triangle(*p), bisectors) hangs

2011-09-28 Thread sympy
Comment #11 on issue 834 by smi...@gmail.com: hasattr(Triangle(*p), bisectors) hangs http://code.google.com/p/sympy/issues/detail?id=834 I see...I just made a similar comment regarding Permutation properties which are really fairly complicated methods. I agree that something that is not

Re: Issue 834 in sympy: hasattr(Triangle(*p), bisectors) hangs

2011-09-28 Thread sympy
Updates: Status: Duplicate Mergedinto: 1597 Comment #12 on issue 834 by smi...@gmail.com: hasattr(Triangle(*p), bisectors) hangs http://code.google.com/p/sympy/issues/detail?id=834 This should be merged with issue 1597 -- You received this message because you are subscribed

Re: Issue 834 in sympy: hasattr(Triangle(*p), bisectors) hangs

2011-04-10 Thread sympy
Comment #8 on issue 834 by fedot...@gmail.com: hasattr(Triangle(*p), bisectors) hangs http://code.google.com/p/sympy/issues/detail?id=834 I think removing @property for most attributes in Triangle, Polygon and other classes of polygon.py is a good idea. The basic reason is properties

Re: Issue 834 in sympy: hasattr(Triangle(*p), bisectors) hangs

2011-04-10 Thread sympy
Comment #9 on issue 834 by mcdonald...@gmail.com: hasattr(Triangle(*p), bisectors) hangs http://code.google.com/p/sympy/issues/detail?id=834 Properties are not really needed at all but a rule that would make sense is properties for all trivial calculation and the rest methods. Is there