[PATCH 4/4] aboutus.txt: adding a note that the list is not complete

2008-12-09 Thread Ondrej Certik
--- doc/src/aboutus.txt |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/doc/src/aboutus.txt b/doc/src/aboutus.txt index 1ddb8f5..04f951b 100644 --- a/doc/src/aboutus.txt +++ b/doc/src/aboutus.txt @@ -9,7 +9,8 @@ SymPy is a team project and it was developed by a lot of

[PATCH 0/4] Credits rearangement

2008-12-09 Thread Ondrej Certik
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 know if the following 4 patches can go in. Thanks, Ondrej Ondrej Certik (4): README: history making more accurate. the list of authors moved to the AUTHORS

[PATCH 2/4] the list of authors moved to the AUTHORS file

2008-12-09 Thread Ondrej Certik
--- AUTHORS | 56 README | 56 +--- 2 files changed, 57 insertions(+), 55 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index

Re: [PATCH] Creating more structure in examples/all.py to differentiate examples that need a plotting window.

2008-12-09 Thread Ondrej Certik
+1, thanks! On Mon, Dec 8, 2008 at 10:18 PM, [EMAIL PROTECTED] wrote: From: Andy R. Terrel [EMAIL PROTECTED] --- examples/all.py | 143 +-- 1 files changed, 97 insertions(+), 46 deletions(-) diff --git a/examples/all.py

Re: [PATCH] Fixes print_gtk example and mathml printing for Limits and Integrals (issue 793).

2008-12-09 Thread Ondrej Certik
+1, thanks! On Mon, Dec 8, 2008 at 10:18 PM, [EMAIL PROTECTED] wrote: From: Andy R. Terrel [EMAIL PROTECTED] --- examples/all.py |2 +- examples/intermediate/print_gtk.py | 11 +++ sympy/printing/mathml.py| 48

[PATCH 0/8] bin/doctests implemented

2008-12-09 Thread Ondrej Certik
Hi, finally, I found time to finish the doctests, so now everything should be working. Please review. Ondrej Certik (8): bin/test: wrap lines correctly in wider terminals bin/doctest added Adapt the doctest code to produce nice results runtests.py: module docstring improved Don't

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

2008-12-09 Thread Ondrej Certik
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 import something syntax (for example all tests in sympy are such a case). --- sympy/utilities/runtests.py | 15 +++ 1 files changed, 15

[PATCH 8/8] Doctest fixes all over sympy

2008-12-09 Thread Ondrej Certik
Now all doctests pass. --- sympy/functions/elementary/trigonometric.py |2 +- sympy/printing/tree.py |3 ++- sympy/series/limits.py |2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git

[PATCH 6/8] bin/doctest: blacklist implemented

2008-12-09 Thread Ondrej Certik
Now we can blacklist any module/file that should not be doctested. Just add it to the blacklist variable in bin/doctest. In the next patch, we'll blacklist several modules in sympy that doesn't (yet) work with doctests. --- bin/doctest |6 +- sympy/utilities/runtests.py |

[PATCH 2/8] bin/doctest added

2008-12-09 Thread Ondrej Certik
The respective class SymPyDocTests was added to sympy/utilities/runtests.py, but it's code was basically duplicated from SymPyTests. The next patch adapts it to work properly with doctests. --- bin/doctest | 31 sympy/utilities/__init__.py |2 +-

[PATCH] First implementation of the second quantization

2008-12-09 Thread Ondrej Certik
From: Brian E. Granger [EMAIL PROTECTED] --- sympy/concrete/summations.py|3 + sympy/physics/secondquant.py| 538 +++ sympy/physics/tests/test_secondquant.py | 165 ++ 3 files changed, 706 insertions(+), 0 deletions(-) create

[PATCH] Adding setupegg.py to allow python setupegg.py develop

2008-12-09 Thread Ondrej Certik
From: Brian E. Granger [EMAIL PROTECTED] --- setupegg.py |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) create mode 100644 setupegg.py diff --git a/setupegg.py b/setupegg.py new file mode 100644 index 000..0402aa5 --- /dev/null +++ b/setupegg.py @@ -0,0 +1,3 @@ +import

Re: [PATCH 0/8] bin/doctests implemented

2008-12-09 Thread Andy Ray Terrel
I'm +1 to all these patches. One thing the docstring test dots don't wrap like the other tests do on my system. On Tue, Dec 9, 2008 at 10:31 AM, Ondrej Certik [EMAIL PROTECTED] wrote: Hi, finally, I found time to finish the doctests, so now everything should be working. Please review.

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

2008-12-09 Thread Andy Ray Terrel
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/runtests.py b/sympy/utilities/runtests.py index 80b7e92..3306e7e 100644 ---

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

2008-12-09 Thread Lance Larsen
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 dc86dcc8d059f0a2cd3eb498b595c8a45775aa92 # Parent d1019a5c66d12d524fe64359c1bd8054cab0cfa9

Re: [PATCH 0/4] Credits rearangement

2008-12-09 Thread Friedrich Hagedorn
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 know if the following 4 patches can go in. +1. I think these patches are conform with