Re: [PATCH] First implementation of the second quantization

2008-12-10 Thread Ondrej Certik
On Tue, Dec 9, 2008 at 6:23 PM, Ondrej Certik <[EMAIL PROTECTED]> wrote: > From: Brian E. Granger <[EMAIL PROTECTED]> > > --- > sympy/concrete/summations.py|3 + > sympy/physics/secondquant.py| 538 > +++ > sympy/physics/tests/test_secondq

Re: Implicit Subs Syntax - f({x:1,y:2})

2008-12-10 Thread Ondrej Certik
On Wed, Dec 10, 2008 at 4:17 AM, Lance Larsen <[EMAIL PROTECTED]> wrote: > > Finally got a few moments to put the implicit subs syntax code > together and get it ready to submit. Here it is. The patch looks good to me, +1. I'll wait for others and if they are ok as well, push this in. Thanks! O

Re: [PATCH 0/4] Credits rearangement

2008-12-10 Thread Ondrej Certik
On Wed, Dec 10, 2008 at 8:54 AM, Friedrich Hagedorn <[EMAIL PROTECTED]> wrote: > > On Tue, Dec 09, 2008 at 01:07:16PM +0100, Ondrej Certik wrote: >> >> Hi, >> >> I moved one sentence from one patch to another on Vinzent's suggestion and I >> added the flower on Friedrich's suggestion. >> >> Let me

Re: [PATCH 5/8] Don't doctest files, that cannot be imported

2008-12-10 Thread Ondrej Certik
On Tue, Dec 9, 2008 at 8:21 PM, Andy Ray Terrel <[EMAIL PROTECTED]> wrote: > > On Tue, Dec 9, 2008 at 10:31 AM, Ondrej Certik <[EMAIL PROTECTED]> wrote: >> >> This is achieved by looking for the __init__.py file and if it's missing, it >> means that such file cannot be imported in python using the

Re: [PATCH 4/8] runtests.py: module docstring improved

2008-12-10 Thread Ondrej Certik
On Tue, Dec 9, 2008 at 8:28 PM, Andy Ray Terrel <[EMAIL PROTECTED]> wrote: > On Tue, Dec 9, 2008 at 10:31 AM, Ondrej Certik <[EMAIL PROTECTED]> wrote: >> >> --- >> sympy/utilities/runtests.py |2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/sympy/utilities/runtest

Re: Implicit Subs Syntax - f({x:1,y:2})

2008-12-10 Thread Friedrich Hagedorn
On Tue, Dec 09, 2008 at 07:17:44PM -0800, Lance Larsen wrote: > > Finally got a few moments to put the implicit subs syntax code > together and get it ready to submit. Here it is. > > -Lance > > # HG changeset patch > # User [EMAIL PROTECTED] > # Date 1228878177 25200 > # Node ID dc86dcc8d059f0

Re: Implicit Subs Syntax - f({x:1,y:2})

2008-12-10 Thread Ondrej Certik
On Wed, Dec 10, 2008 at 9:57 AM, Friedrich Hagedorn <[EMAIL PROTECTED]> wrote: > > On Tue, Dec 09, 2008 at 07:17:44PM -0800, Lance Larsen wrote: >> >> Finally got a few moments to put the implicit subs syntax code >> together and get it ready to submit. Here it is. >> >> -Lance >> >> # HG changese

[PATCH] More explanation for running examples in readme.

2008-12-10 Thread andy . terrel
From: Andy R. Terrel <[EMAIL PROTECTED]> --- examples/README | 17 + 1 files changed, 13 insertions(+), 4 deletions(-) diff --git a/examples/README b/examples/README index 55fe855..12f9bcd 100644 --- a/examples/README +++ b/examples/README @@ -21,11 +21,20 @@ advanced : -

Re: [PATCH] More explanation for running examples in readme.

2008-12-10 Thread Ondrej Certik
On Wed, Dec 10, 2008 at 3:44 PM, <[EMAIL PROTECTED]> wrote: > > From: Andy R. Terrel <[EMAIL PROTECTED]> > > --- > examples/README | 17 + > 1 files changed, 13 insertions(+), 4 deletions(-) > > diff --git a/examples/README b/examples/README > index 55fe855..12f9bcd 100644 > --

Re: [PATCH] More explanation for running examples in readme.

2008-12-10 Thread Sebastian
>> -To run the examples one needs to have Python version >= 2.4 installed. Each >> -example can be run from the command line python and the name of the example: >> +To run the examples one needs to have Python version >= 2.4 installed and >> SymPy >> +must be in your PYTHONPATH environment vari

Re: [PATCH] More explanation for running examples in readme.

2008-12-10 Thread Andy Ray Terrel
On Wed, Dec 10, 2008 at 9:37 AM, Sebastian <[EMAIL PROTECTED]> wrote: > > >>> -To run the examples one needs to have Python version >= 2.4 installed. >>> Each >>> -example can be run from the command line python and the name of the >>> example: >>> +To run the examples one needs to have Python

[PATCH] doctests: three more modules blacklisted

2008-12-10 Thread Ondrej Certik
Also an information about why each module doesn't work properly added. --- bin/doctest | 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/bin/doctest b/bin/doctest index f2d0ffc..9749afc 100755 --- a/bin/doctest +++ b/bin/doctest @@ -8,10 +8,13 @@ work in any circu

Re: doctests: three more modules blacklisted

2008-12-10 Thread Andy R. Terrel
+1 from me. On Dec 10, 11:20 am, Ondrej Certik <[EMAIL PROTECTED]> wrote: > Also an information about why each module doesn't work properly added. > --- >  bin/doctest |   11 +++ >  1 files changed, 7 insertions(+), 4 deletions(-) > > diff --git a/bin/doctest b/bin/doctest > index f2d0ff

[PATCH] factortools.py: robustify a test

2008-12-10 Thread Ondrej Certik
This test was failing on amd64: Failed example: factor(x**2 - y**2) Expected: (x - y)*(x + y) Got: (x + y)*(x - y) Now it works everywhere. --- sympy/polys/factortools.py |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sympy/polys/factortools.py b/sympy/p

Re: factortools.py: robustify a test

2008-12-10 Thread Andy R. Terrel
I'm +1 just to get the doc tests working, but it would be nice if the architecture didn't affect the output. On Dec 10, 11:51 am, Ondrej Certik <[EMAIL PROTECTED]> wrote: > This test was failing on amd64: > > Failed example: >     factor(x**2 - y**2) > Expected: >     (x - y)*(x + y) > Got: >    

Re: factortools.py: robustify a test

2008-12-10 Thread Ondrej Certik
On Wed, Dec 10, 2008 at 6:55 PM, Andy R. Terrel <[EMAIL PROTECTED]> wrote: > > I'm +1 just to get the doc tests working, but it would be nice if the > architecture didn't affect the output. Yeah, it would. Ondrej --~--~-~--~~~---~--~~ You received this message be