Re: [sympy] Re: GSOC

2012-02-24 Thread Joachim Durchholz
Am 24.02.2012 02:19, schrieb Renato Coutinho: Unfortunately the main infrastructure is in Java, but the UI is, of course, javascript - not sure how much can be reused. Etherpad Lite seems to be a better original to look up. (It is Etherpad rewritten in pure Javascript using Node.js.) 1.5 M ins

[sympy] sympy tests not running

2012-02-24 Thread Bharath M R
I created a branch on my desktop and tried to run the tests. All the tests in test_GA.py are not working. Should I report it as an issue? -- You received this message because you are subscribed to the Google Groups "sympy" group. To view this discussion on the web visit https://groups.google.c

[sympy] Re: GSoC Idea: Improving SymPy-Bot

2012-02-24 Thread Marchael
I want to apply for GSoC 2012 and improving sympy-bot may become good project for me, I'll try to solve some issues from tracker. You could send code directly to my email or share with any other comfortable way. On 23 фев, 23:55, Chris Smith wrote: > One thing my script doesn't do is check for re

[sympy] Re: GSoC Idea: Improving SymPy-Bot

2012-02-24 Thread Marchael
I have questions about sympy-bot/examples. It'd be greate if someone could contact me on #sympy On 24 фев, 19:07, Marchael wrote: > I want to apply for GSoC 2012 and improving sympy-bot may become good > project for me, I'll try to solve some issues from tracker. > You could send code directly t

[sympy] Modify Printing Behavior

2012-02-24 Thread Alan Bromborsky
What would be the best way of modifying the printing behavior of functions and derivatives without modifying the core? -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from thi

Re: [sympy] Modify Printing Behavior

2012-02-24 Thread Alan Bromborsky
On 02/24/2012 11:31 AM, Alan Bromborsky wrote: What would be the best way of modifying the printing behavior of functions and derivatives without modifying the core? I found the tutorial on modifying printers. No reply needed. -- You received this message because you are subscribed to the Go

Re: [sympy] Modify Printing Behavior

2012-02-24 Thread Alan Bromborsky
On 02/24/2012 12:18 PM, Alan Bromborsky wrote: On 02/24/2012 11:31 AM, Alan Bromborsky wrote: What would be the best way of modifying the printing behavior of functions and derivatives without modifying the core? I found the tutorial on modifying printers. No reply needed. I spoke too soon

Re: [sympy] sympy tests not running

2012-02-24 Thread Ondřej Čertík
Hi Bharath, On Fri, Feb 24, 2012 at 3:10 AM, Bharath M R wrote: > I created a branch on my desktop and tried to run the tests. All the tests > in test_GA.py are not working. Should I report it as an issue? Yes, please do. Send the whole test output. All tests should run. Thanks, Ondrej -- Yo

Re: [sympy] sympy tests not running

2012-02-24 Thread Matthew Rocklin
I've also had this problem. My experience: It only happens on a few machines It only happens when I run all tests, not if I just test galgebra I've run into this while running sympy bot before. Here is a printout from an old pull request http://reviews.sympy.org/report/agZzeW1weTNyDAsSBFRhc2sY5eML

Re: [sympy] Twitter page

2012-02-24 Thread Aaron Meurer
Great. I guess @sympy was already taken by someone. @SymPyTips is not, though. But @SymbolicPython is fine too. Could you add something to the end of the description like "from @hector" (or whatever your twitter username is), so that people know that they're specifically coming from you? Maybe

Re: [sympy] Twitter page

2012-02-24 Thread Ondřej Čertík
On Fri, Feb 24, 2012 at 4:42 PM, Aaron Meurer wrote: > Great.  I guess @sympy was already taken by someone.  @SymPyTips is > not, though.  But @SymbolicPython is fine too. I think that Mateusz reserved @sympy for us to use. Ondrej -- You received this message because you are subscribed to the

Re: [sympy] Twitter page

2012-02-24 Thread Aaron Meurer
I don't know. See https://twitter.com/#!/sympy. That doesn't look like Mateusz to me, unless I'm missing something. Aaron Meurer 2012/2/24 Ondřej Čertík : > On Fri, Feb 24, 2012 at 4:42 PM, Aaron Meurer wrote: >> Great.  I guess @sympy was already taken by someone.  @SymPyTips is >> not, thoug

Re: [sympy] sympy tests not running

2012-02-24 Thread Aaron Meurer
Is it consistently reproducible? We should try to get this fixed. Aaron Meurer On Fri, Feb 24, 2012 at 3:08 PM, Matthew Rocklin wrote: > I've also had this problem. My experience: > It only happens on a few machines > It only happens when I run all tests, not if I just test galgebra > > I've ru

Re: [sympy] Modify Printing Behavior

2012-02-24 Thread Aaron Meurer
You mean the print statement? That works by calling str() on the arguments. So you'll want to override __str__, or extend the StrPrinter. In Python 3, of course, you can just override the print() function. Aaron Meurer On Fri, Feb 24, 2012 at 11:05 AM, Alan Bromborsky wrote: > On 02/24/2012 1

Re: [sympy] sympy tests not running

2012-02-24 Thread Matthew Rocklin
> Is it consistently reproducible?  We should try to get this fixed. It is consistent, yes. -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to sympy@googlegroups.com. To unsubscribe from this group, send email to symp

Re: [sympy] sympy tests not running

2012-02-24 Thread Chris Smith
I believe it is failing because the broadcast mechanism is not working. It fails right from the start, as I recall, because things created with MV appear undefined. All subsequence expressions then generate errors. -- You received this message because you are subscribed to the Google Groups "sym

Re: [sympy] Modify Printing Behavior

2012-02-24 Thread Alan Bromborsky
On 02/24/2012 08:15 PM, Aaron Meurer wrote: You mean the print statement? That works by calling str() on the arguments. So you'll want to override __str__, or extend the StrPrinter. In Python 3, of course, you can just override the print() function. Aaron Meurer On Fri, Feb 24, 2012 at 11:05

Re: [sympy] sympy tests not running

2012-02-24 Thread Christian Bühler
Hm, sounds like probably my patch (https://github.com/sympy/sympy/pull/1066) introduced the problem. I'm sorry, but currently I cannot look at the problem because I have to learn for my exams. If it still persists after March 1st, I will take care of it. Am 25.02.2012 03:14, schrieb Chris Smit