On Tue, Nov 8, 2011 at 8:23 PM, Joachim Durchholz <[email protected]> wrote:
> Am 08.11.2011 18:39, schrieb Aaron Meurer:
>>
>> First, to clarify one thing, `Expr.__lt__` returns a Relational `Lt`
>> object (and the same for the other relations):
>
> Oh. I was unable to get Eclipse's debugger to work with Sympy, so I couldn't
> single-step through Sympy to verify those implicit assumptions (in this
> case, the assumption that __lt__ is just a standard inequality).
>
> Did anybody manage to get Sympy to work in Eclipse?
> I keep hitting problems. One of the causes seems to be that the PYTHONPATH
> needs to list both sympy/bin/ and sympy/; the duplicates seem to drive PyDev
> mad.
>
> A Pythonic debugger would be fine, too, though I'd prefer to stick with
> Eclipse since that would be one thing less to learn.
>
> The other alternative would be to embark on restructuring Sympy so that it
> needs less run-time redefinitions and static tools have an easier life. Not
> sure how much of that is worth it, or even possible.
>
> Regards,
> Jo
>
> --
> 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.
>
>

To be honest, I just use Kate (or any other basic text editor) and the
command line for my SymPy work. Python code is usually clear enough
that you don't really need an IDE (unlike eg. Java, where you can't
really reasonably remember all the loooong names of everything). If I
need debugging, I do it the oldschool way - adding print statements -
but there wasn't really a need. There's also the python debugger, you
can invoke it with "python -m pdb <script>" and it's pretty powerful
as I remember (but again, I only used it a handful of times during my
whole GSoC project).

-- 
Vladimir Perić

-- 
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.

Reply via email to