Re: [sympy] integrate

2012-06-29 Thread Vinzent Steinberg
Am Montag, 25. Juni 2012 21:14:38 UTC+2 schrieb kjetil1001: > > > Actually you can work around this limitation by using piecewise > functions: > > > > In [12]: myabs = lambda x: Piecewise((x, x>=0), (-x, x<0)) > > > > In [13]: integrate( (t1*t2*t3)**beta * myabs((t1-t2)*(t1-t3)*(t2-t3)), > >

Re: [sympy] Status of my pull requests

2012-06-29 Thread Tom Bachmann
Heya, my biggest pull request got green light and was merged a few minutes ago. A very big *thank you* to everyone (in particular aaron) who reviewed this huge pile of code. Tom On 10.06.2012 10:34, Tom Bachmann wrote: Hi, first of all I'd like to apologize for being slightly unresponsive

[sympy] Re: how to automatically test pull requests with sympy-bot

2012-06-29 Thread Marchael
Hey, I could try to help with implementing "sympy-bot work" mode. I like idea with github hooks, but I think that first we should rid from pollings on review site, there is my issue about that https://github.com/sympy/sympy-bot/issues/112 понедельник, 25 июня 2012 г., 2:20:40 UTC+6 пользователь

Re: [sympy] integrate

2012-06-29 Thread Kjetil brinchmann Halvorsen
see inline. On Fri, Jun 29, 2012 at 5:04 AM, Vinzent Steinberg wrote: > Am Montag, 25. Juni 2012 21:14:38 UTC+2 schrieb kjetil1001: >> >> > Actually you can work around this limitation by using piecewise >> > functions: >> > >> > In [12]: myabs = lambda x: Piecewise((x, x>=0), (-x, x<0)) >> > >>

Re: [sympy] Status of my pull requests

2012-06-29 Thread Aaron Meurer
And a big thank you to you for submitting it in the first place! Aaron Meurer On Jun 29, 2012, at 3:05 AM, Tom Bachmann wrote: > Heya, > > my biggest pull request got green light and was merged a few minutes ago. A > very big *thank you* to everyone (in particular aaron) who reviewed this huge

[sympy] commit message reminder (72-80)

2012-06-29 Thread smichr
Just a reminder that commit messages will look best when viewed in a command window (e.g. git bash) when the title is not longer than 72 characters, is followed by a blank line, and successive lines are not longer than 80 characters. (If the title is not longer than 72 characters, then the enti

Re: [sympy] commit message reminder (72-80)

2012-06-29 Thread Mateusz Paprocki
Hi, On 29 June 2012 19:29, smichr wrote: > Just a reminder that commit messages will look best when viewed in a > command window (e.g. git bash) when the title is not longer than 72 > characters, is followed by a blank line, and successive lines are not > longer than 80 characters. (If the title

Re: [sympy] Test failures in master: Hash randomization

2012-06-29 Thread Sergiu Ivanov
On Sun, Jun 24, 2012 at 10:41 AM, Sergiu Ivanov wrote: > > On Sun, Jun 24, 2012 at 8:32 AM, Aaron Meurer wrote: >> >> And lastly, if anyone has any thoughts on how we could canonically >> order the arguments of Add and Mul independent of hash values, but is >> still just as fast as hash values, I

Re: [sympy] Re: how to automatically test pull requests with sympy-bot

2012-06-29 Thread Ondřej Čertík
Hi Michael, On Fri, Jun 29, 2012 at 3:03 AM, Marchael wrote: > Hey, > I could try to help with implementing "sympy-bot work" mode. > I like idea with github hooks, but I think that first we should rid from > pollings on review site, there is my issue about > that https://github.com/sympy/sympy-bo

Re: [sympy] how to automatically test pull requests with sympy-bot

2012-06-29 Thread Ondřej Čertík
On Tue, Jun 26, 2012 at 6:37 PM, Aaron Meurer wrote: > On Jun 26, 2012, at 6:27 PM, "Ondřej Čertík" wrote: > >> Hi Stefan, >> >> On Mon, Jun 25, 2012 at 1:33 AM, krastanov.ste...@gmail.com >> wrote: How will this scale?  I will also have spare machines to dedicate to this, once I get m

Re: [sympy] Test failures in master: Hash randomization

2012-06-29 Thread Ondřej Čertík
On Fri, Jun 29, 2012 at 1:06 PM, Sergiu Ivanov wrote: > On Sun, Jun 24, 2012 at 10:41 AM, Sergiu Ivanov > wrote: >> >> On Sun, Jun 24, 2012 at 8:32 AM, Aaron Meurer wrote: >>> >>> And lastly, if anyone has any thoughts on how we could canonically >>> order the arguments of Add and Mul independen

Re: [sympy] commit message reminder (72-80)

2012-06-29 Thread Ondřej Čertík
On Fri, Jun 29, 2012 at 12:56 PM, Mateusz Paprocki wrote: > Hi, > > On 29 June 2012 19:29, smichr wrote: >> >> Just a reminder that commit messages will look best when viewed in a >> command window (e.g. git bash) when the title is not longer than 72 >> characters, is followed by a blank line, an

Re: [sympy] commit message reminder (72-80)

2012-06-29 Thread Chris Smith
I wonder if the commit message(s) can be tested by the bot. /c -- 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 sympy+unsubscr...@googlegroups.c

Re: [sympy] Test failures in master: Hash randomization

2012-06-29 Thread Sergiu Ivanov
On Sat, Jun 30, 2012 at 12:24 AM, Ondřej Čertík wrote: > On Fri, Jun 29, 2012 at 1:06 PM, Sergiu Ivanov > wrote: >> On Sun, Jun 24, 2012 at 10:41 AM, Sergiu Ivanov >> wrote: >>> >>> On Sun, Jun 24, 2012 at 8:32 AM, Aaron Meurer wrote: And lastly, if anyone has any thoughts on how we c

Re: [sympy] commit message reminder (72-80)

2012-06-29 Thread Chris Smith
I see that github now gives the commit message along with the commit. This is nice, but it appears to use its own markup which means that maybe we should include such markup (which is pretty non-intrusive, anyway) in the commit message. Note, for example, in https://github.com/sympy/sympy/pull/1375

Re: [sympy] commit message reminder (72-80)

2012-06-29 Thread Aaron Meurer
It should use the same markup as pull request comments. It's just markdown. So you can use Headers === And markup code like ```py >>> 1+1 2 ``` It will look good in plaintext and in GitHub. Aaron Meurer On Jun 29, 2012, at 3:51 PM, Chris Smith wrote: > I see that github now gives the co