diff options
author | wen <wen@pkgsrc.org> | 2012-12-02 12:33:23 +0000 |
---|---|---|
committer | wen <wen@pkgsrc.org> | 2012-12-02 12:33:23 +0000 |
commit | cde30ba8eeba4aa976a8bddf619fd7a886dace87 (patch) | |
tree | 6ef51fa4ee16921b2471cbb9cc6a2af509b306cc | |
parent | 9e31700b21072f718714e93f12c527e11f12593b (diff) | |
download | pkgsrc-cde30ba8eeba4aa976a8bddf619fd7a886dace87.tar.gz |
Update to 0.7.2
Upstream changes:
Release Notes for 0.7.2New Page Edit Page Page History
These are the release notes for SymPy 0.7.2. SymPy 0.7.2 was released on October 16, 2012.
Major Changes
Python 3 support
SymPy now supports Python 3. The officially supported versions are 3.2 and 3.3, but 3.1 should also work in a pinch. The Python 3-compatible tarballs will be provided separately, but it is also possible to download Python 2 code and convert it manually, via the bin/use2to3 utility. See the README for more
PyPy support
All SymPy tests pass in recent nightlies of PyPy, and so it should have full support as of the next version after 1.9.
Combinatorics
A new module called Combinatorics was added which is the result of a successful GSoC project. It attempts to replicate the functionality of Combinatorica and currently has full featured support for Permutations, Subsets, Gray codes and Prufer codes.
In another GSoC project, facilities from computational group theory were added to the combinatorics module, mainly following the book "Handbook of computational group theory". Currently only permutation groups are supported. The main functionalities are: basic properties (orbits, stabilizers, random elements...), the Schreier-Sims algorithm (three implementations, in increasing speed: with Jerrum's filter, incremental, and randomized (Monte Carlo)), backtrack searching for subgroups with certain properties.
Definite Integration
A new module called meijerint was added, which is also the result of a successful GSoC project. It implements a heuristic algorithm for (mainly) definite integration, similar to the one used in Mathematica. The code is automatically called by the standard integrate() function. This new algorithm allows computation of important integral transforms in many interesting cases, so helper functions for Laplace, Fourier and Mellin transforms were added as well.
Random Variables
A new module called stats was added. This introduces a RandomSymbol type which can be used to model uncertainty in expressions.
Matrix Expressions
A new matrix submodule named expressions was added. This introduces a MatrixSymbol type which can be used to describe a matrix without explicitly stating its entries. A new family of expression types were also added: Transpose, Inverse, Trace, and BlockMatrix. ImmutableMatrix was added so that explicitly defined matrices could interact with other SymPy expressions.
Sets
A number of new sets were added including atomic sets like FiniteSet, Reals, Naturals, Integers, UniversalSet as well as compound sets like ProductSet and TransformationSet. Using these building blocks it is possible to build up a great variety of interesting sets.
Classical Mechanics
A physics submodule named machanics was added which assists in formation of equations of motion for constrained multi-body systems. It is the result of 3 GSoC projects. Some nontrivial systems can be solved, and examples are provided.
Quantum Mechanics
Density operator module has been added. The operator can be initialized with generic Kets or Qubits. The Density operator can also work with TensorProducts as arguments. Global methods are also added that compute entropy and fidelity of states. Trace and partial-trace operations can also be performed on these density operators.
To enable partial trace operations a Tr module has been added to the core library. While the functionality should remain same, this module is likely to be relocated to an alternate folder in the future. One can currently also use sympy.core.Tr to work on general trace operations, but this module is what is needed to work on trace and partial-trace operations on any sympy.physics.quantum objects.
The Density operators, Tr and Partial trace functionality was implemented as part of student participation in GSoC 2012
Expanded angular momentum to include coupled-basis states and product-basis states. Operators can also be treated as acting on the coupled basis (default behavior) or on one component of the tensor product states. The methods for coupling and uncoupling these states can work on an arbitrary number of states. Representing, rewriting and applying states and operators between bases has been improved.
Commutative Algebra
A new module agca was started which seeks to support computations in commutative algebra (and eventually algebraic geometry) in the style of Macaulay2 and Singular. Currently there is support for computing Groebner bases of modules over a (generalized) polynomial ring over a field. Based on this, there are algorithms for various standard problems in commutative algebra, e.g., computing intersections of submodules, equality tests in quotient rings, etc....
Plotting Module
A new plotting module has been added which uses Matplotlib as its back-end. The plotting module has functions to plot the following:
2D line plots
2D parametric plots.
2D implicit and region plots.
3D surface plots.
3D parametric surface plots.
3D parametric line plots.
Differential Geometry
Thanks to a GSoC project the beginning of a new module covering the theory of differential geometry was started. It can be imported with sympy.diffgeom. It is based on "Functional Differential Geometry" by Sussman and Wisdom. Currently implemented are scalar, vector and form fields over manifolds as well as covariant and other derivatives.
-rw-r--r-- | math/py-sympy/Makefile | 19 | ||||
-rw-r--r-- | math/py-sympy/PLIST | 647 | ||||
-rw-r--r-- | math/py-sympy/distinfo | 10 | ||||
-rw-r--r-- | math/py-sympy/patches/patch-aa | 10 |
4 files changed, 591 insertions, 95 deletions
diff --git a/math/py-sympy/Makefile b/math/py-sympy/Makefile index 8f6b798f603..8611e135c8e 100644 --- a/math/py-sympy/Makefile +++ b/math/py-sympy/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2012/09/11 23:04:32 asau Exp $ +# $NetBSD: Makefile,v 1.13 2012/12/02 12:33:23 wen Exp $ # -DISTNAME= sympy-0.7.1 -PKGNAME= ${PYPKGPREFIX}-sympy-0.7.1 +DISTNAME= sympy-0.7.2 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= math MASTER_SITES= http://sympy.googlecode.com/files/ @@ -15,6 +15,19 @@ USE_LANGUAGES= # none PYDISTUTILSPKG= yes PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} +SUBST_CLASSES+= python +SUBST_STAGE.python= post-patch +SUBST_MESSAGE.python= Fixing python path +SUBST_FILES.python+= sympy/galgebra/GA.py +SUBST_FILES.python+= sympy/galgebra/tests/test_GA.py +SUBST_SED.python= -e "s,/usr/bin/python,${PYTHONBIN}," + +SUBST_CLASSES+= python2 +SUBST_STAGE.python2= post-patch +SUBST_MESSAGE.python2= Fixing python path +SUBST_FILES.python2+= sympy/mpmath/tests/runtests.py +SUBST_SED.python2= -e "s,/usr/bin/env python,${PYTHONBIN}," + post-extract: ${CP} ${WRKSRC}/bin/isympy ${WRKSRC}/bin/isympy${PYVERSSUFFIX} ${CP} ${WRKSRC}/doc/man/isympy.1 \ diff --git a/math/py-sympy/PLIST b/math/py-sympy/PLIST index 99d2c3d8db4..fb277081d81 100644 --- a/math/py-sympy/PLIST +++ b/math/py-sympy/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.7 2012/02/24 19:43:03 drochner Exp $ +@comment $NetBSD: PLIST,v 1.8 2012/12/02 12:33:23 wen Exp $ bin/isympy${PYVERSSUFFIX} ${PYSITELIB}/sympy/__init__.py ${PYSITELIB}/sympy/__init__.pyc @@ -33,6 +33,9 @@ ${PYSITELIB}/sympy/assumptions/handlers/sets.pyo ${PYSITELIB}/sympy/assumptions/refine.py ${PYSITELIB}/sympy/assumptions/refine.pyc ${PYSITELIB}/sympy/assumptions/refine.pyo +${PYSITELIB}/sympy/assumptions/tests/__init__.py +${PYSITELIB}/sympy/assumptions/tests/__init__.pyc +${PYSITELIB}/sympy/assumptions/tests/__init__.pyo ${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.py ${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyc ${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyo @@ -42,6 +45,99 @@ ${PYSITELIB}/sympy/assumptions/tests/test_query.pyo ${PYSITELIB}/sympy/assumptions/tests/test_refine.py ${PYSITELIB}/sympy/assumptions/tests/test_refine.pyc ${PYSITELIB}/sympy/assumptions/tests/test_refine.pyo +${PYSITELIB}/sympy/categories/__init__.py +${PYSITELIB}/sympy/categories/__init__.pyc +${PYSITELIB}/sympy/categories/__init__.pyo +${PYSITELIB}/sympy/categories/baseclasses.py +${PYSITELIB}/sympy/categories/baseclasses.pyc +${PYSITELIB}/sympy/categories/baseclasses.pyo +${PYSITELIB}/sympy/categories/diagram_drawing.py +${PYSITELIB}/sympy/categories/diagram_drawing.pyc +${PYSITELIB}/sympy/categories/diagram_drawing.pyo +${PYSITELIB}/sympy/categories/tests/test_baseclasses.py +${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyc +${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyo +${PYSITELIB}/sympy/categories/tests/test_drawing.py +${PYSITELIB}/sympy/categories/tests/test_drawing.pyc +${PYSITELIB}/sympy/categories/tests/test_drawing.pyo +${PYSITELIB}/sympy/combinatorics/__init__.py +${PYSITELIB}/sympy/combinatorics/__init__.pyc +${PYSITELIB}/sympy/combinatorics/__init__.pyo +${PYSITELIB}/sympy/combinatorics/generators.py +${PYSITELIB}/sympy/combinatorics/generators.pyc +${PYSITELIB}/sympy/combinatorics/generators.pyo +${PYSITELIB}/sympy/combinatorics/graycode.py +${PYSITELIB}/sympy/combinatorics/graycode.pyc +${PYSITELIB}/sympy/combinatorics/graycode.pyo +${PYSITELIB}/sympy/combinatorics/group_constructs.py +${PYSITELIB}/sympy/combinatorics/group_constructs.pyc +${PYSITELIB}/sympy/combinatorics/group_constructs.pyo +${PYSITELIB}/sympy/combinatorics/named_groups.py +${PYSITELIB}/sympy/combinatorics/named_groups.pyc +${PYSITELIB}/sympy/combinatorics/named_groups.pyo +${PYSITELIB}/sympy/combinatorics/partitions.py +${PYSITELIB}/sympy/combinatorics/partitions.pyc +${PYSITELIB}/sympy/combinatorics/partitions.pyo +${PYSITELIB}/sympy/combinatorics/perm_groups.py +${PYSITELIB}/sympy/combinatorics/perm_groups.pyc +${PYSITELIB}/sympy/combinatorics/perm_groups.pyo +${PYSITELIB}/sympy/combinatorics/permutations.py +${PYSITELIB}/sympy/combinatorics/permutations.pyc +${PYSITELIB}/sympy/combinatorics/permutations.pyo +${PYSITELIB}/sympy/combinatorics/polyhedron.py +${PYSITELIB}/sympy/combinatorics/polyhedron.pyc +${PYSITELIB}/sympy/combinatorics/polyhedron.pyo +${PYSITELIB}/sympy/combinatorics/prufer.py +${PYSITELIB}/sympy/combinatorics/prufer.pyc +${PYSITELIB}/sympy/combinatorics/prufer.pyo +${PYSITELIB}/sympy/combinatorics/subsets.py +${PYSITELIB}/sympy/combinatorics/subsets.pyc +${PYSITELIB}/sympy/combinatorics/subsets.pyo +${PYSITELIB}/sympy/combinatorics/tests/__init__.py +${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc +${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_generators.py +${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_graycode.py +${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.py +${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.py +${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py +${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py +${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py +${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py +${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py +${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_subsets.py +${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py +${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo +${PYSITELIB}/sympy/combinatorics/tests/test_util.py +${PYSITELIB}/sympy/combinatorics/tests/test_util.pyc +${PYSITELIB}/sympy/combinatorics/tests/test_util.pyo +${PYSITELIB}/sympy/combinatorics/testutil.py +${PYSITELIB}/sympy/combinatorics/testutil.pyc +${PYSITELIB}/sympy/combinatorics/testutil.pyo +${PYSITELIB}/sympy/combinatorics/util.py +${PYSITELIB}/sympy/combinatorics/util.pyc +${PYSITELIB}/sympy/combinatorics/util.pyo ${PYSITELIB}/sympy/concrete/__init__.py ${PYSITELIB}/sympy/concrete/__init__.pyc ${PYSITELIB}/sympy/concrete/__init__.pyo @@ -54,6 +150,9 @@ ${PYSITELIB}/sympy/concrete/products.pyo ${PYSITELIB}/sympy/concrete/summations.py ${PYSITELIB}/sympy/concrete/summations.pyc ${PYSITELIB}/sympy/concrete/summations.pyo +${PYSITELIB}/sympy/concrete/tests/__init__.py +${PYSITELIB}/sympy/concrete/tests/__init__.pyc +${PYSITELIB}/sympy/concrete/tests/__init__.pyo ${PYSITELIB}/sympy/concrete/tests/test_gosper.py ${PYSITELIB}/sympy/concrete/tests/test_gosper.pyc ${PYSITELIB}/sympy/concrete/tests/test_gosper.pyo @@ -114,6 +213,9 @@ ${PYSITELIB}/sympy/core/function.pyo ${PYSITELIB}/sympy/core/logic.py ${PYSITELIB}/sympy/core/logic.pyc ${PYSITELIB}/sympy/core/logic.pyo +${PYSITELIB}/sympy/core/mod.py +${PYSITELIB}/sympy/core/mod.pyc +${PYSITELIB}/sympy/core/mod.pyo ${PYSITELIB}/sympy/core/mul.py ${PYSITELIB}/sympy/core/mul.pyc ${PYSITELIB}/sympy/core/mul.pyo @@ -132,6 +234,9 @@ ${PYSITELIB}/sympy/core/power.pyo ${PYSITELIB}/sympy/core/relational.py ${PYSITELIB}/sympy/core/relational.pyc ${PYSITELIB}/sympy/core/relational.pyo +${PYSITELIB}/sympy/core/rules.py +${PYSITELIB}/sympy/core/rules.pyc +${PYSITELIB}/sympy/core/rules.pyo ${PYSITELIB}/sympy/core/sets.py ${PYSITELIB}/sympy/core/sets.pyc ${PYSITELIB}/sympy/core/sets.pyo @@ -144,6 +249,12 @@ ${PYSITELIB}/sympy/core/symbol.pyo ${PYSITELIB}/sympy/core/sympify.py ${PYSITELIB}/sympy/core/sympify.pyc ${PYSITELIB}/sympy/core/sympify.pyo +${PYSITELIB}/sympy/core/tests/__init__.py +${PYSITELIB}/sympy/core/tests/__init__.pyc +${PYSITELIB}/sympy/core/tests/__init__.pyo +${PYSITELIB}/sympy/core/tests/test_args.py +${PYSITELIB}/sympy/core/tests/test_args.pyc +${PYSITELIB}/sympy/core/tests/test_args.pyo ${PYSITELIB}/sympy/core/tests/test_arit.py ${PYSITELIB}/sympy/core/tests/test_arit.pyc ${PYSITELIB}/sympy/core/tests/test_arit.pyo @@ -192,15 +303,18 @@ ${PYSITELIB}/sympy/core/tests/test_exprtools.pyo ${PYSITELIB}/sympy/core/tests/test_facts.py ${PYSITELIB}/sympy/core/tests/test_facts.pyc ${PYSITELIB}/sympy/core/tests/test_facts.pyo -${PYSITELIB}/sympy/core/tests/test_functions.py -${PYSITELIB}/sympy/core/tests/test_functions.pyc -${PYSITELIB}/sympy/core/tests/test_functions.pyo +${PYSITELIB}/sympy/core/tests/test_function.py +${PYSITELIB}/sympy/core/tests/test_function.pyc +${PYSITELIB}/sympy/core/tests/test_function.pyo ${PYSITELIB}/sympy/core/tests/test_logic.py ${PYSITELIB}/sympy/core/tests/test_logic.pyc ${PYSITELIB}/sympy/core/tests/test_logic.pyo ${PYSITELIB}/sympy/core/tests/test_match.py ${PYSITELIB}/sympy/core/tests/test_match.pyc ${PYSITELIB}/sympy/core/tests/test_match.pyo +${PYSITELIB}/sympy/core/tests/test_noncommutative.py +${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc +${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo ${PYSITELIB}/sympy/core/tests/test_numbers.py ${PYSITELIB}/sympy/core/tests/test_numbers.pyc ${PYSITELIB}/sympy/core/tests/test_numbers.pyo @@ -213,6 +327,9 @@ ${PYSITELIB}/sympy/core/tests/test_priority.pyo ${PYSITELIB}/sympy/core/tests/test_relational.py ${PYSITELIB}/sympy/core/tests/test_relational.pyc ${PYSITELIB}/sympy/core/tests/test_relational.pyo +${PYSITELIB}/sympy/core/tests/test_rules.py +${PYSITELIB}/sympy/core/tests/test_rules.pyc +${PYSITELIB}/sympy/core/tests/test_rules.pyo ${PYSITELIB}/sympy/core/tests/test_sets.py ${PYSITELIB}/sympy/core/tests/test_sets.pyc ${PYSITELIB}/sympy/core/tests/test_sets.pyo @@ -225,18 +342,48 @@ ${PYSITELIB}/sympy/core/tests/test_symbol.pyo ${PYSITELIB}/sympy/core/tests/test_sympify.py ${PYSITELIB}/sympy/core/tests/test_sympify.pyc ${PYSITELIB}/sympy/core/tests/test_sympify.pyo +${PYSITELIB}/sympy/core/tests/test_trace.py +${PYSITELIB}/sympy/core/tests/test_trace.pyc +${PYSITELIB}/sympy/core/tests/test_trace.pyo ${PYSITELIB}/sympy/core/tests/test_truediv.py ${PYSITELIB}/sympy/core/tests/test_truediv.pyc ${PYSITELIB}/sympy/core/tests/test_truediv.pyo ${PYSITELIB}/sympy/core/tests/test_var.py ${PYSITELIB}/sympy/core/tests/test_var.pyc ${PYSITELIB}/sympy/core/tests/test_var.pyo +${PYSITELIB}/sympy/core/trace.py +${PYSITELIB}/sympy/core/trace.pyc +${PYSITELIB}/sympy/core/trace.pyo +${PYSITELIB}/sympy/diffgeom/__init__.py +${PYSITELIB}/sympy/diffgeom/__init__.pyc +${PYSITELIB}/sympy/diffgeom/__init__.pyo +${PYSITELIB}/sympy/diffgeom/diffgeom.py +${PYSITELIB}/sympy/diffgeom/diffgeom.pyc +${PYSITELIB}/sympy/diffgeom/diffgeom.pyo +${PYSITELIB}/sympy/diffgeom/rn.py +${PYSITELIB}/sympy/diffgeom/rn.pyc +${PYSITELIB}/sympy/diffgeom/rn.pyo +${PYSITELIB}/sympy/diffgeom/tests/__init__.py +${PYSITELIB}/sympy/diffgeom/tests/__init__.pyc +${PYSITELIB}/sympy/diffgeom/tests/__init__.pyo +${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.py +${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyc +${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyo +${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.py +${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyc +${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyo +${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.py +${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyc +${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyo ${PYSITELIB}/sympy/external/__init__.py ${PYSITELIB}/sympy/external/__init__.pyc ${PYSITELIB}/sympy/external/__init__.pyo ${PYSITELIB}/sympy/external/importtools.py ${PYSITELIB}/sympy/external/importtools.pyc ${PYSITELIB}/sympy/external/importtools.pyo +${PYSITELIB}/sympy/external/tests/__init__.py +${PYSITELIB}/sympy/external/tests/__init__.pyc +${PYSITELIB}/sympy/external/tests/__init__.pyo ${PYSITELIB}/sympy/external/tests/test_autowrap.py ${PYSITELIB}/sympy/external/tests/test_autowrap.pyc ${PYSITELIB}/sympy/external/tests/test_autowrap.pyo @@ -264,6 +411,9 @@ ${PYSITELIB}/sympy/functions/combinatorial/factorials.pyo ${PYSITELIB}/sympy/functions/combinatorial/numbers.py ${PYSITELIB}/sympy/functions/combinatorial/numbers.pyc ${PYSITELIB}/sympy/functions/combinatorial/numbers.pyo +${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.py +${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.pyc +${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.pyo ${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.py ${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyc ${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyo @@ -291,6 +441,9 @@ ${PYSITELIB}/sympy/functions/elementary/miscellaneous.pyo ${PYSITELIB}/sympy/functions/elementary/piecewise.py ${PYSITELIB}/sympy/functions/elementary/piecewise.pyc ${PYSITELIB}/sympy/functions/elementary/piecewise.pyo +${PYSITELIB}/sympy/functions/elementary/tests/__init__.py +${PYSITELIB}/sympy/functions/elementary/tests/__init__.pyc +${PYSITELIB}/sympy/functions/elementary/tests/__init__.pyo ${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.py ${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyc ${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyo @@ -348,6 +501,9 @@ ${PYSITELIB}/sympy/functions/special/spherical_harmonics.pyo ${PYSITELIB}/sympy/functions/special/tensor_functions.py ${PYSITELIB}/sympy/functions/special/tensor_functions.pyc ${PYSITELIB}/sympy/functions/special/tensor_functions.pyo +${PYSITELIB}/sympy/functions/special/tests/__init__.py +${PYSITELIB}/sympy/functions/special/tests/__init__.pyc +${PYSITELIB}/sympy/functions/special/tests/__init__.pyo ${PYSITELIB}/sympy/functions/special/tests/test_bessel.py ${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyc ${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyo @@ -390,6 +546,9 @@ ${PYSITELIB}/sympy/galgebra/__init__.pyo ${PYSITELIB}/sympy/galgebra/latex_ex.py ${PYSITELIB}/sympy/galgebra/latex_ex.pyc ${PYSITELIB}/sympy/galgebra/latex_ex.pyo +${PYSITELIB}/sympy/galgebra/tests/__init__.py +${PYSITELIB}/sympy/galgebra/tests/__init__.pyc +${PYSITELIB}/sympy/galgebra/tests/__init__.pyo ${PYSITELIB}/sympy/galgebra/tests/test_GA.py ${PYSITELIB}/sympy/galgebra/tests/test_GA.pyc ${PYSITELIB}/sympy/galgebra/tests/test_GA.pyo @@ -417,6 +576,9 @@ ${PYSITELIB}/sympy/geometry/point.pyo ${PYSITELIB}/sympy/geometry/polygon.py ${PYSITELIB}/sympy/geometry/polygon.pyc ${PYSITELIB}/sympy/geometry/polygon.pyo +${PYSITELIB}/sympy/geometry/tests/__init__.py +${PYSITELIB}/sympy/geometry/tests/__init__.pyc +${PYSITELIB}/sympy/geometry/tests/__init__.pyo ${PYSITELIB}/sympy/geometry/tests/test_geometry.py ${PYSITELIB}/sympy/geometry/tests/test_geometry.pyc ${PYSITELIB}/sympy/geometry/tests/test_geometry.pyo @@ -429,45 +591,75 @@ ${PYSITELIB}/sympy/integrals/__init__.pyo ${PYSITELIB}/sympy/integrals/deltafunctions.py ${PYSITELIB}/sympy/integrals/deltafunctions.pyc ${PYSITELIB}/sympy/integrals/deltafunctions.pyo -${PYSITELIB}/sympy/integrals/heurisch2.py -${PYSITELIB}/sympy/integrals/heurisch2.pyc -${PYSITELIB}/sympy/integrals/heurisch2.pyo ${PYSITELIB}/sympy/integrals/integrals.py ${PYSITELIB}/sympy/integrals/integrals.pyc ${PYSITELIB}/sympy/integrals/integrals.pyo +${PYSITELIB}/sympy/integrals/master_risch.py +${PYSITELIB}/sympy/integrals/master_risch.pyc +${PYSITELIB}/sympy/integrals/master_risch.pyo +${PYSITELIB}/sympy/integrals/master_test_risch.py +${PYSITELIB}/sympy/integrals/master_test_risch.pyc +${PYSITELIB}/sympy/integrals/master_test_risch.pyo +${PYSITELIB}/sympy/integrals/meijerint.py +${PYSITELIB}/sympy/integrals/meijerint.pyc +${PYSITELIB}/sympy/integrals/meijerint.pyo +${PYSITELIB}/sympy/integrals/meijerint_doc.py +${PYSITELIB}/sympy/integrals/meijerint_doc.pyc +${PYSITELIB}/sympy/integrals/meijerint_doc.pyo ${PYSITELIB}/sympy/integrals/rationaltools.py ${PYSITELIB}/sympy/integrals/rationaltools.pyc ${PYSITELIB}/sympy/integrals/rationaltools.pyo ${PYSITELIB}/sympy/integrals/risch.py ${PYSITELIB}/sympy/integrals/risch.pyc ${PYSITELIB}/sympy/integrals/risch.pyo +${PYSITELIB}/sympy/integrals/tests/__init__.py +${PYSITELIB}/sympy/integrals/tests/__init__.pyc +${PYSITELIB}/sympy/integrals/tests/__init__.pyo ${PYSITELIB}/sympy/integrals/tests/test_integrals.py ${PYSITELIB}/sympy/integrals/tests/test_integrals.pyc ${PYSITELIB}/sympy/integrals/tests/test_integrals.pyo ${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.py ${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyc ${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyo +${PYSITELIB}/sympy/integrals/tests/test_meijerint.py +${PYSITELIB}/sympy/integrals/tests/test_meijerint.pyc +${PYSITELIB}/sympy/integrals/tests/test_meijerint.pyo ${PYSITELIB}/sympy/integrals/tests/test_rationaltools.py ${PYSITELIB}/sympy/integrals/tests/test_rationaltools.pyc ${PYSITELIB}/sympy/integrals/tests/test_rationaltools.pyo ${PYSITELIB}/sympy/integrals/tests/test_risch.py ${PYSITELIB}/sympy/integrals/tests/test_risch.pyc ${PYSITELIB}/sympy/integrals/tests/test_risch.pyo +${PYSITELIB}/sympy/integrals/tests/test_transforms.py +${PYSITELIB}/sympy/integrals/tests/test_transforms.pyc +${PYSITELIB}/sympy/integrals/tests/test_transforms.pyo ${PYSITELIB}/sympy/integrals/tests/test_trigonometry.py ${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyc ${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyo +${PYSITELIB}/sympy/integrals/transforms.py +${PYSITELIB}/sympy/integrals/transforms.pyc +${PYSITELIB}/sympy/integrals/transforms.pyo ${PYSITELIB}/sympy/integrals/trigonometry.py ${PYSITELIB}/sympy/integrals/trigonometry.pyc ${PYSITELIB}/sympy/integrals/trigonometry.pyo ${PYSITELIB}/sympy/interactive/__init__.py ${PYSITELIB}/sympy/interactive/__init__.pyc ${PYSITELIB}/sympy/interactive/__init__.pyo +${PYSITELIB}/sympy/interactive/ipythonprinting.py +${PYSITELIB}/sympy/interactive/ipythonprinting.pyc +${PYSITELIB}/sympy/interactive/ipythonprinting.pyo ${PYSITELIB}/sympy/interactive/printing.py ${PYSITELIB}/sympy/interactive/printing.pyc ${PYSITELIB}/sympy/interactive/printing.pyo ${PYSITELIB}/sympy/interactive/session.py ${PYSITELIB}/sympy/interactive/session.pyc ${PYSITELIB}/sympy/interactive/session.pyo +${PYSITELIB}/sympy/interactive/tests/test_interactive.py +${PYSITELIB}/sympy/interactive/tests/test_interactive.pyc +${PYSITELIB}/sympy/interactive/tests/test_interactive.pyo +${PYSITELIB}/sympy/interactive/tests/test_ipython.py +${PYSITELIB}/sympy/interactive/tests/test_ipython.pyc +${PYSITELIB}/sympy/interactive/tests/test_ipython.pyo ${PYSITELIB}/sympy/logic/__init__.py ${PYSITELIB}/sympy/logic/__init__.pyc ${PYSITELIB}/sympy/logic/__init__.pyo @@ -486,6 +678,9 @@ ${PYSITELIB}/sympy/logic/boolalg.pyo ${PYSITELIB}/sympy/logic/inference.py ${PYSITELIB}/sympy/logic/inference.pyc ${PYSITELIB}/sympy/logic/inference.pyo +${PYSITELIB}/sympy/logic/tests/__init__.py +${PYSITELIB}/sympy/logic/tests/__init__.pyc +${PYSITELIB}/sympy/logic/tests/__init__.pyo ${PYSITELIB}/sympy/logic/tests/test_boolalg.py ${PYSITELIB}/sympy/logic/tests/test_boolalg.pyc ${PYSITELIB}/sympy/logic/tests/test_boolalg.pyo @@ -504,9 +699,63 @@ ${PYSITELIB}/sympy/logic/utilities/dimacs.pyo ${PYSITELIB}/sympy/matrices/__init__.py ${PYSITELIB}/sympy/matrices/__init__.pyc ${PYSITELIB}/sympy/matrices/__init__.pyo +${PYSITELIB}/sympy/matrices/expressions/__init__.py +${PYSITELIB}/sympy/matrices/expressions/__init__.pyc +${PYSITELIB}/sympy/matrices/expressions/__init__.pyo +${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py +${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc +${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo +${PYSITELIB}/sympy/matrices/expressions/funcmatrix.py +${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyc +${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyo +${PYSITELIB}/sympy/matrices/expressions/inverse.py +${PYSITELIB}/sympy/matrices/expressions/inverse.pyc +${PYSITELIB}/sympy/matrices/expressions/inverse.pyo +${PYSITELIB}/sympy/matrices/expressions/matadd.py +${PYSITELIB}/sympy/matrices/expressions/matadd.pyc +${PYSITELIB}/sympy/matrices/expressions/matadd.pyo +${PYSITELIB}/sympy/matrices/expressions/matexpr.py +${PYSITELIB}/sympy/matrices/expressions/matexpr.pyc +${PYSITELIB}/sympy/matrices/expressions/matexpr.pyo +${PYSITELIB}/sympy/matrices/expressions/matmul.py +${PYSITELIB}/sympy/matrices/expressions/matmul.pyc +${PYSITELIB}/sympy/matrices/expressions/matmul.pyo +${PYSITELIB}/sympy/matrices/expressions/matpow.py +${PYSITELIB}/sympy/matrices/expressions/matpow.pyc +${PYSITELIB}/sympy/matrices/expressions/matpow.pyo +${PYSITELIB}/sympy/matrices/expressions/tests/__init__.py +${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyc +${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyo +${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.py +${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyc +${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyo +${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.py +${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyc +${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyo +${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.py +${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyc +${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyo +${PYSITELIB}/sympy/matrices/expressions/trace.py +${PYSITELIB}/sympy/matrices/expressions/trace.pyc +${PYSITELIB}/sympy/matrices/expressions/trace.pyo +${PYSITELIB}/sympy/matrices/expressions/transpose.py +${PYSITELIB}/sympy/matrices/expressions/transpose.pyc +${PYSITELIB}/sympy/matrices/expressions/transpose.pyo +${PYSITELIB}/sympy/matrices/immutable_matrix.py +${PYSITELIB}/sympy/matrices/immutable_matrix.pyc +${PYSITELIB}/sympy/matrices/immutable_matrix.pyo ${PYSITELIB}/sympy/matrices/matrices.py ${PYSITELIB}/sympy/matrices/matrices.pyc ${PYSITELIB}/sympy/matrices/matrices.pyo +${PYSITELIB}/sympy/matrices/tests/__init__.py +${PYSITELIB}/sympy/matrices/tests/__init__.pyc +${PYSITELIB}/sympy/matrices/tests/__init__.pyo +${PYSITELIB}/sympy/matrices/tests/test_immutable.py +${PYSITELIB}/sympy/matrices/tests/test_immutable.pyc +${PYSITELIB}/sympy/matrices/tests/test_immutable.pyo +${PYSITELIB}/sympy/matrices/tests/test_interactions.py +${PYSITELIB}/sympy/matrices/tests/test_interactions.pyc +${PYSITELIB}/sympy/matrices/tests/test_interactions.pyo ${PYSITELIB}/sympy/matrices/tests/test_matrices.py ${PYSITELIB}/sympy/matrices/tests/test_matrices.pyc ${PYSITELIB}/sympy/matrices/tests/test_matrices.pyo @@ -540,9 +789,6 @@ ${PYSITELIB}/sympy/mpmath/calculus/polynomials.pyo ${PYSITELIB}/sympy/mpmath/calculus/quadrature.py ${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyc ${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyo -${PYSITELIB}/sympy/mpmath/conftest.py -${PYSITELIB}/sympy/mpmath/conftest.pyc -${PYSITELIB}/sympy/mpmath/conftest.pyo ${PYSITELIB}/sympy/mpmath/ctx_base.py ${PYSITELIB}/sympy/mpmath/ctx_base.pyc ${PYSITELIB}/sympy/mpmath/ctx_base.pyo @@ -783,6 +1029,9 @@ ${PYSITELIB}/sympy/ntheory/primetest.pyo ${PYSITELIB}/sympy/ntheory/residue_ntheory.py ${PYSITELIB}/sympy/ntheory/residue_ntheory.pyc ${PYSITELIB}/sympy/ntheory/residue_ntheory.pyo +${PYSITELIB}/sympy/ntheory/tests/__init__.py +${PYSITELIB}/sympy/ntheory/tests/__init__.pyc +${PYSITELIB}/sympy/ntheory/tests/__init__.pyo ${PYSITELIB}/sympy/ntheory/tests/test_ntheory.py ${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyc ${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyo @@ -807,6 +1056,9 @@ ${PYSITELIB}/sympy/parsing/sympy_parser.pyo ${PYSITELIB}/sympy/parsing/sympy_tokenize.py ${PYSITELIB}/sympy/parsing/sympy_tokenize.pyc ${PYSITELIB}/sympy/parsing/sympy_tokenize.pyo +${PYSITELIB}/sympy/parsing/tests/__init__.py +${PYSITELIB}/sympy/parsing/tests/__init__.pyc +${PYSITELIB}/sympy/parsing/tests/__init__.pyo ${PYSITELIB}/sympy/parsing/tests/test_mathematica.py ${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc ${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo @@ -816,12 +1068,63 @@ ${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo ${PYSITELIB}/sympy/physics/__init__.py ${PYSITELIB}/sympy/physics/__init__.pyc ${PYSITELIB}/sympy/physics/__init__.pyo +${PYSITELIB}/sympy/physics/gaussopt.py +${PYSITELIB}/sympy/physics/gaussopt.pyc +${PYSITELIB}/sympy/physics/gaussopt.pyo ${PYSITELIB}/sympy/physics/hydrogen.py ${PYSITELIB}/sympy/physics/hydrogen.pyc ${PYSITELIB}/sympy/physics/hydrogen.pyo ${PYSITELIB}/sympy/physics/matrices.py ${PYSITELIB}/sympy/physics/matrices.pyc ${PYSITELIB}/sympy/physics/matrices.pyo +${PYSITELIB}/sympy/physics/mechanics/__init__.py +${PYSITELIB}/sympy/physics/mechanics/__init__.pyc +${PYSITELIB}/sympy/physics/mechanics/__init__.pyo +${PYSITELIB}/sympy/physics/mechanics/essential.py +${PYSITELIB}/sympy/physics/mechanics/essential.pyc +${PYSITELIB}/sympy/physics/mechanics/essential.pyo +${PYSITELIB}/sympy/physics/mechanics/functions.py +${PYSITELIB}/sympy/physics/mechanics/functions.pyc +${PYSITELIB}/sympy/physics/mechanics/functions.pyo +${PYSITELIB}/sympy/physics/mechanics/kane.py +${PYSITELIB}/sympy/physics/mechanics/kane.pyc +${PYSITELIB}/sympy/physics/mechanics/kane.pyo +${PYSITELIB}/sympy/physics/mechanics/lagrange.py +${PYSITELIB}/sympy/physics/mechanics/lagrange.pyc +${PYSITELIB}/sympy/physics/mechanics/lagrange.pyo +${PYSITELIB}/sympy/physics/mechanics/particle.py +${PYSITELIB}/sympy/physics/mechanics/particle.pyc +${PYSITELIB}/sympy/physics/mechanics/particle.pyo +${PYSITELIB}/sympy/physics/mechanics/point.py +${PYSITELIB}/sympy/physics/mechanics/point.pyc +${PYSITELIB}/sympy/physics/mechanics/point.pyo +${PYSITELIB}/sympy/physics/mechanics/rigidbody.py +${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyc +${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/__init__.py +${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_point.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyo +${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.py +${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyc +${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyo ${PYSITELIB}/sympy/physics/paulialgebra.py ${PYSITELIB}/sympy/physics/paulialgebra.pyc ${PYSITELIB}/sympy/physics/paulialgebra.pyo @@ -843,6 +1146,9 @@ ${PYSITELIB}/sympy/physics/quantum/cg.pyo ${PYSITELIB}/sympy/physics/quantum/circuitplot.py ${PYSITELIB}/sympy/physics/quantum/circuitplot.pyc ${PYSITELIB}/sympy/physics/quantum/circuitplot.pyo +${PYSITELIB}/sympy/physics/quantum/circuitutils.py +${PYSITELIB}/sympy/physics/quantum/circuitutils.pyc +${PYSITELIB}/sympy/physics/quantum/circuitutils.pyo ${PYSITELIB}/sympy/physics/quantum/commutator.py ${PYSITELIB}/sympy/physics/quantum/commutator.pyc ${PYSITELIB}/sympy/physics/quantum/commutator.pyo @@ -852,6 +1158,9 @@ ${PYSITELIB}/sympy/physics/quantum/constants.pyo ${PYSITELIB}/sympy/physics/quantum/dagger.py ${PYSITELIB}/sympy/physics/quantum/dagger.pyc ${PYSITELIB}/sympy/physics/quantum/dagger.pyo +${PYSITELIB}/sympy/physics/quantum/density.py +${PYSITELIB}/sympy/physics/quantum/density.pyc +${PYSITELIB}/sympy/physics/quantum/density.pyo ${PYSITELIB}/sympy/physics/quantum/gate.py ${PYSITELIB}/sympy/physics/quantum/gate.pyc ${PYSITELIB}/sympy/physics/quantum/gate.pyo @@ -861,12 +1170,12 @@ ${PYSITELIB}/sympy/physics/quantum/grover.pyo ${PYSITELIB}/sympy/physics/quantum/hilbert.py ${PYSITELIB}/sympy/physics/quantum/hilbert.pyc ${PYSITELIB}/sympy/physics/quantum/hilbert.pyo +${PYSITELIB}/sympy/physics/quantum/identitysearch.py +${PYSITELIB}/sympy/physics/quantum/identitysearch.pyc +${PYSITELIB}/sympy/physics/quantum/identitysearch.pyo ${PYSITELIB}/sympy/physics/quantum/innerproduct.py ${PYSITELIB}/sympy/physics/quantum/innerproduct.pyc ${PYSITELIB}/sympy/physics/quantum/innerproduct.pyo -${PYSITELIB}/sympy/physics/quantum/kronecker.py -${PYSITELIB}/sympy/physics/quantum/kronecker.pyc -${PYSITELIB}/sympy/physics/quantum/kronecker.pyo ${PYSITELIB}/sympy/physics/quantum/matrixcache.py ${PYSITELIB}/sympy/physics/quantum/matrixcache.pyc ${PYSITELIB}/sympy/physics/quantum/matrixcache.pyo @@ -876,6 +1185,9 @@ ${PYSITELIB}/sympy/physics/quantum/matrixutils.pyo ${PYSITELIB}/sympy/physics/quantum/operator.py ${PYSITELIB}/sympy/physics/quantum/operator.pyc ${PYSITELIB}/sympy/physics/quantum/operator.pyo +${PYSITELIB}/sympy/physics/quantum/operatorset.py +${PYSITELIB}/sympy/physics/quantum/operatorset.pyc +${PYSITELIB}/sympy/physics/quantum/operatorset.pyo ${PYSITELIB}/sympy/physics/quantum/piab.py ${PYSITELIB}/sympy/physics/quantum/piab.pyc ${PYSITELIB}/sympy/physics/quantum/piab.pyo @@ -906,6 +1218,9 @@ ${PYSITELIB}/sympy/physics/quantum/state.pyo ${PYSITELIB}/sympy/physics/quantum/tensorproduct.py ${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyc ${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyo +${PYSITELIB}/sympy/physics/quantum/tests/__init__.py +${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyc +${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.py ${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyo @@ -915,6 +1230,9 @@ ${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_cg.py ${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyo +${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.py +${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyc +${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.py ${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyo @@ -924,6 +1242,9 @@ ${PYSITELIB}/sympy/physics/quantum/tests/test_constants.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.py ${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyo +${PYSITELIB}/sympy/physics/quantum/tests/test_density.py +${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyc +${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_gate.py ${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyo @@ -933,21 +1254,27 @@ ${PYSITELIB}/sympy/physics/quantum/tests/test_grover.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.py ${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyo +${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.py +${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyc +${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.py ${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyo -${PYSITELIB}/sympy/physics/quantum/tests/test_kronecker.py -${PYSITELIB}/sympy/physics/quantum/tests/test_kronecker.pyc -${PYSITELIB}/sympy/physics/quantum/tests/test_kronecker.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.py ${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_operator.py ${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyo +${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.py +${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyc +${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_piab.py ${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyo +${PYSITELIB}/sympy/physics/quantum/tests/test_printing.py +${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyc +${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyo ${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.py ${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyc ${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyo @@ -981,9 +1308,15 @@ ${PYSITELIB}/sympy/physics/secondquant.pyo ${PYSITELIB}/sympy/physics/sho.py ${PYSITELIB}/sympy/physics/sho.pyc ${PYSITELIB}/sympy/physics/sho.pyo +${PYSITELIB}/sympy/physics/tests/__init__.py +${PYSITELIB}/sympy/physics/tests/__init__.pyc +${PYSITELIB}/sympy/physics/tests/__init__.pyo ${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.py ${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyc ${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyo +${PYSITELIB}/sympy/physics/tests/test_gaussopt.py +${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyc +${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyo ${PYSITELIB}/sympy/physics/tests/test_hydrogen.py ${PYSITELIB}/sympy/physics/tests/test_hydrogen.pyc ${PYSITELIB}/sympy/physics/tests/test_hydrogen.pyo @@ -1014,63 +1347,123 @@ ${PYSITELIB}/sympy/physics/wigner.pyo ${PYSITELIB}/sympy/plotting/__init__.py ${PYSITELIB}/sympy/plotting/__init__.pyc ${PYSITELIB}/sympy/plotting/__init__.pyo -${PYSITELIB}/sympy/plotting/color_scheme.py -${PYSITELIB}/sympy/plotting/color_scheme.pyc -${PYSITELIB}/sympy/plotting/color_scheme.pyo -${PYSITELIB}/sympy/plotting/managed_window.py -${PYSITELIB}/sympy/plotting/managed_window.pyc -${PYSITELIB}/sympy/plotting/managed_window.pyo +${PYSITELIB}/sympy/plotting/experimental_lambdify.py +${PYSITELIB}/sympy/plotting/experimental_lambdify.pyc +${PYSITELIB}/sympy/plotting/experimental_lambdify.pyo +${PYSITELIB}/sympy/plotting/intervalmath/__init__.py +${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyc +${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyo +${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py +${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc +${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo +${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py +${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc +${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc +${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo ${PYSITELIB}/sympy/plotting/plot.py ${PYSITELIB}/sympy/plotting/plot.pyc ${PYSITELIB}/sympy/plotting/plot.pyo -${PYSITELIB}/sympy/plotting/plot_axes.py -${PYSITELIB}/sympy/plotting/plot_axes.pyc -${PYSITELIB}/sympy/plotting/plot_axes.pyo -${PYSITELIB}/sympy/plotting/plot_camera.py -${PYSITELIB}/sympy/plotting/plot_camera.pyc -${PYSITELIB}/sympy/plotting/plot_camera.pyo -${PYSITELIB}/sympy/plotting/plot_controller.py -${PYSITELIB}/sympy/plotting/plot_controller.pyc -${PYSITELIB}/sympy/plotting/plot_controller.pyo -${PYSITELIB}/sympy/plotting/plot_curve.py -${PYSITELIB}/sympy/plotting/plot_curve.pyc -${PYSITELIB}/sympy/plotting/plot_curve.pyo -${PYSITELIB}/sympy/plotting/plot_interval.py -${PYSITELIB}/sympy/plotting/plot_interval.pyc -${PYSITELIB}/sympy/plotting/plot_interval.pyo -${PYSITELIB}/sympy/plotting/plot_mode.py -${PYSITELIB}/sympy/plotting/plot_mode.pyc -${PYSITELIB}/sympy/plotting/plot_mode.pyo -${PYSITELIB}/sympy/plotting/plot_mode_base.py -${PYSITELIB}/sympy/plotting/plot_mode_base.pyc -${PYSITELIB}/sympy/plotting/plot_mode_base.pyo -${PYSITELIB}/sympy/plotting/plot_modes.py -${PYSITELIB}/sympy/plotting/plot_modes.pyc -${PYSITELIB}/sympy/plotting/plot_modes.pyo -${PYSITELIB}/sympy/plotting/plot_object.py -${PYSITELIB}/sympy/plotting/plot_object.pyc -${PYSITELIB}/sympy/plotting/plot_object.pyo -${PYSITELIB}/sympy/plotting/plot_rotation.py -${PYSITELIB}/sympy/plotting/plot_rotation.pyc -${PYSITELIB}/sympy/plotting/plot_rotation.pyo -${PYSITELIB}/sympy/plotting/plot_surface.py -${PYSITELIB}/sympy/plotting/plot_surface.pyc -${PYSITELIB}/sympy/plotting/plot_surface.pyo -${PYSITELIB}/sympy/plotting/plot_window.py -${PYSITELIB}/sympy/plotting/plot_window.pyc -${PYSITELIB}/sympy/plotting/plot_window.pyo -${PYSITELIB}/sympy/plotting/tests/test_plotting.py -${PYSITELIB}/sympy/plotting/tests/test_plotting.pyc -${PYSITELIB}/sympy/plotting/tests/test_plotting.pyo +${PYSITELIB}/sympy/plotting/plot_implicit.py +${PYSITELIB}/sympy/plotting/plot_implicit.pyc +${PYSITELIB}/sympy/plotting/plot_implicit.pyo +${PYSITELIB}/sympy/plotting/proxy_pyglet.py +${PYSITELIB}/sympy/plotting/proxy_pyglet.pyc +${PYSITELIB}/sympy/plotting/proxy_pyglet.pyo +${PYSITELIB}/sympy/plotting/pygletplot/__init__.py +${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyc +${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyo +${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.py +${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyc +${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyo +${PYSITELIB}/sympy/plotting/pygletplot/managed_window.py +${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyc +${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot.py +${PYSITELIB}/sympy/plotting/pygletplot/plot.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_object.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyo +${PYSITELIB}/sympy/plotting/pygletplot/plot_window.py +${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyc +${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyo +${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.py +${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyc +${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyo +${PYSITELIB}/sympy/plotting/pygletplot/util.py +${PYSITELIB}/sympy/plotting/pygletplot/util.pyc +${PYSITELIB}/sympy/plotting/pygletplot/util.pyo +${PYSITELIB}/sympy/plotting/tests/__init__.py +${PYSITELIB}/sympy/plotting/tests/__init__.pyc +${PYSITELIB}/sympy/plotting/tests/__init__.pyo +${PYSITELIB}/sympy/plotting/tests/test_plot.py +${PYSITELIB}/sympy/plotting/tests/test_plot.pyc +${PYSITELIB}/sympy/plotting/tests/test_plot.pyo +${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py +${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc +${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo ${PYSITELIB}/sympy/plotting/textplot.py ${PYSITELIB}/sympy/plotting/textplot.pyc ${PYSITELIB}/sympy/plotting/textplot.pyo -${PYSITELIB}/sympy/plotting/util.py -${PYSITELIB}/sympy/plotting/util.pyc -${PYSITELIB}/sympy/plotting/util.pyo ${PYSITELIB}/sympy/polys/__init__.py ${PYSITELIB}/sympy/polys/__init__.pyc ${PYSITELIB}/sympy/polys/__init__.pyo +${PYSITELIB}/sympy/polys/agca/__init__.py +${PYSITELIB}/sympy/polys/agca/__init__.pyc +${PYSITELIB}/sympy/polys/agca/__init__.pyo +${PYSITELIB}/sympy/polys/agca/homomorphisms.py +${PYSITELIB}/sympy/polys/agca/homomorphisms.pyc +${PYSITELIB}/sympy/polys/agca/homomorphisms.pyo +${PYSITELIB}/sympy/polys/agca/ideals.py +${PYSITELIB}/sympy/polys/agca/ideals.pyc +${PYSITELIB}/sympy/polys/agca/ideals.pyo +${PYSITELIB}/sympy/polys/agca/modules.py +${PYSITELIB}/sympy/polys/agca/modules.pyc +${PYSITELIB}/sympy/polys/agca/modules.pyo +${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.py +${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyc +${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyo +${PYSITELIB}/sympy/polys/agca/tests/test_ideals.py +${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyc +${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyo +${PYSITELIB}/sympy/polys/agca/tests/test_modules.py +${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyc +${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyo ${PYSITELIB}/sympy/polys/constructor.py ${PYSITELIB}/sympy/polys/constructor.pyc ${PYSITELIB}/sympy/polys/constructor.pyo @@ -1080,12 +1473,15 @@ ${PYSITELIB}/sympy/polys/densearith.pyo ${PYSITELIB}/sympy/polys/densebasic.py ${PYSITELIB}/sympy/polys/densebasic.pyc ${PYSITELIB}/sympy/polys/densebasic.pyo -${PYSITELIB}/sympy/polys/densepolys.py -${PYSITELIB}/sympy/polys/densepolys.pyc -${PYSITELIB}/sympy/polys/densepolys.pyo ${PYSITELIB}/sympy/polys/densetools.py ${PYSITELIB}/sympy/polys/densetools.pyc ${PYSITELIB}/sympy/polys/densetools.pyo +${PYSITELIB}/sympy/polys/distributedmodules.py +${PYSITELIB}/sympy/polys/distributedmodules.pyc +${PYSITELIB}/sympy/polys/distributedmodules.pyo +${PYSITELIB}/sympy/polys/distributedpolys.py +${PYSITELIB}/sympy/polys/distributedpolys.pyc +${PYSITELIB}/sympy/polys/distributedpolys.pyo ${PYSITELIB}/sympy/polys/domains/__init__.py ${PYSITELIB}/sympy/polys/domains/__init__.pyc ${PYSITELIB}/sympy/polys/domains/__init__.pyo @@ -1158,6 +1554,9 @@ ${PYSITELIB}/sympy/polys/domains/pythonrationaltype.pyo ${PYSITELIB}/sympy/polys/domains/pythonrealdomain.py ${PYSITELIB}/sympy/polys/domains/pythonrealdomain.pyc ${PYSITELIB}/sympy/polys/domains/pythonrealdomain.pyo +${PYSITELIB}/sympy/polys/domains/quotientring.py +${PYSITELIB}/sympy/polys/domains/quotientring.pyc +${PYSITELIB}/sympy/polys/domains/quotientring.pyo ${PYSITELIB}/sympy/polys/domains/rationalfield.py ${PYSITELIB}/sympy/polys/domains/rationalfield.pyc ${PYSITELIB}/sympy/polys/domains/rationalfield.pyo @@ -1242,24 +1641,15 @@ ${PYSITELIB}/sympy/polys/rootisolation.pyo ${PYSITELIB}/sympy/polys/rootoftools.py ${PYSITELIB}/sympy/polys/rootoftools.pyc ${PYSITELIB}/sympy/polys/rootoftools.pyo -${PYSITELIB}/sympy/polys/sparsearith.py -${PYSITELIB}/sympy/polys/sparsearith.pyc -${PYSITELIB}/sympy/polys/sparsearith.pyo -${PYSITELIB}/sympy/polys/sparsebasic.py -${PYSITELIB}/sympy/polys/sparsebasic.pyc -${PYSITELIB}/sympy/polys/sparsebasic.pyo -${PYSITELIB}/sympy/polys/sparsepolys.py -${PYSITELIB}/sympy/polys/sparsepolys.pyc -${PYSITELIB}/sympy/polys/sparsepolys.pyo -${PYSITELIB}/sympy/polys/sparsetools.py -${PYSITELIB}/sympy/polys/sparsetools.pyc -${PYSITELIB}/sympy/polys/sparsetools.pyo ${PYSITELIB}/sympy/polys/specialpolys.py ${PYSITELIB}/sympy/polys/specialpolys.pyc ${PYSITELIB}/sympy/polys/specialpolys.pyo ${PYSITELIB}/sympy/polys/sqfreetools.py ${PYSITELIB}/sympy/polys/sqfreetools.pyc ${PYSITELIB}/sympy/polys/sqfreetools.pyo +${PYSITELIB}/sympy/polys/tests/__init__.py +${PYSITELIB}/sympy/polys/tests/__init__.pyc +${PYSITELIB}/sympy/polys/tests/__init__.pyo ${PYSITELIB}/sympy/polys/tests/test_constructor.py ${PYSITELIB}/sympy/polys/tests/test_constructor.pyc ${PYSITELIB}/sympy/polys/tests/test_constructor.pyo @@ -1272,6 +1662,12 @@ ${PYSITELIB}/sympy/polys/tests/test_densebasic.pyo ${PYSITELIB}/sympy/polys/tests/test_densetools.py ${PYSITELIB}/sympy/polys/tests/test_densetools.pyc ${PYSITELIB}/sympy/polys/tests/test_densetools.pyo +${PYSITELIB}/sympy/polys/tests/test_distributedmodules.py +${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyc +${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyo +${PYSITELIB}/sympy/polys/tests/test_distributedpolys.py +${PYSITELIB}/sympy/polys/tests/test_distributedpolys.pyc +${PYSITELIB}/sympy/polys/tests/test_distributedpolys.pyo ${PYSITELIB}/sympy/polys/tests/test_domains.py ${PYSITELIB}/sympy/polys/tests/test_domains.pyc ${PYSITELIB}/sympy/polys/tests/test_domains.pyo @@ -1305,6 +1701,9 @@ ${PYSITELIB}/sympy/polys/tests/test_polyclasses.pyo ${PYSITELIB}/sympy/polys/tests/test_polyfuncs.py ${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyc ${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyo +${PYSITELIB}/sympy/polys/tests/test_polynomialring.py +${PYSITELIB}/sympy/polys/tests/test_polynomialring.pyc +${PYSITELIB}/sympy/polys/tests/test_polynomialring.pyo ${PYSITELIB}/sympy/polys/tests/test_polyoptions.py ${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyc ${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyo @@ -1317,6 +1716,9 @@ ${PYSITELIB}/sympy/polys/tests/test_polytools.pyo ${PYSITELIB}/sympy/polys/tests/test_polyutils.py ${PYSITELIB}/sympy/polys/tests/test_polyutils.pyc ${PYSITELIB}/sympy/polys/tests/test_polyutils.pyo +${PYSITELIB}/sympy/polys/tests/test_quotientring.py +${PYSITELIB}/sympy/polys/tests/test_quotientring.pyc +${PYSITELIB}/sympy/polys/tests/test_quotientring.pyo ${PYSITELIB}/sympy/polys/tests/test_rationaltools.py ${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyc ${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyo @@ -1350,6 +1752,9 @@ ${PYSITELIB}/sympy/printing/fcode.pyo ${PYSITELIB}/sympy/printing/gtk.py ${PYSITELIB}/sympy/printing/gtk.pyc ${PYSITELIB}/sympy/printing/gtk.pyo +${PYSITELIB}/sympy/printing/jscode.py +${PYSITELIB}/sympy/printing/jscode.pyc +${PYSITELIB}/sympy/printing/jscode.pyo ${PYSITELIB}/sympy/printing/lambdarepr.py ${PYSITELIB}/sympy/printing/lambdarepr.pyc ${PYSITELIB}/sympy/printing/lambdarepr.pyo @@ -1374,6 +1779,9 @@ ${PYSITELIB}/sympy/printing/pretty/pretty_symbology.pyo ${PYSITELIB}/sympy/printing/pretty/stringpict.py ${PYSITELIB}/sympy/printing/pretty/stringpict.pyc ${PYSITELIB}/sympy/printing/pretty/stringpict.pyo +${PYSITELIB}/sympy/printing/pretty/tests/__init__.py +${PYSITELIB}/sympy/printing/pretty/tests/__init__.pyc +${PYSITELIB}/sympy/printing/pretty/tests/__init__.pyo ${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.py ${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyc ${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyo @@ -1392,6 +1800,12 @@ ${PYSITELIB}/sympy/printing/repr.pyo ${PYSITELIB}/sympy/printing/str.py ${PYSITELIB}/sympy/printing/str.pyc ${PYSITELIB}/sympy/printing/str.pyo +${PYSITELIB}/sympy/printing/tableform.py +${PYSITELIB}/sympy/printing/tableform.pyc +${PYSITELIB}/sympy/printing/tableform.pyo +${PYSITELIB}/sympy/printing/tests/__init__.py +${PYSITELIB}/sympy/printing/tests/__init__.pyc +${PYSITELIB}/sympy/printing/tests/__init__.pyo ${PYSITELIB}/sympy/printing/tests/test_ccode.py ${PYSITELIB}/sympy/printing/tests/test_ccode.pyc ${PYSITELIB}/sympy/printing/tests/test_ccode.pyo @@ -1407,6 +1821,9 @@ ${PYSITELIB}/sympy/printing/tests/test_fcode.pyo ${PYSITELIB}/sympy/printing/tests/test_gtk.py ${PYSITELIB}/sympy/printing/tests/test_gtk.pyc ${PYSITELIB}/sympy/printing/tests/test_gtk.pyo +${PYSITELIB}/sympy/printing/tests/test_jscode.py +${PYSITELIB}/sympy/printing/tests/test_jscode.pyc +${PYSITELIB}/sympy/printing/tests/test_jscode.pyo ${PYSITELIB}/sympy/printing/tests/test_lambdarepr.py ${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyc ${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyo @@ -1428,6 +1845,9 @@ ${PYSITELIB}/sympy/printing/tests/test_repr.pyo ${PYSITELIB}/sympy/printing/tests/test_str.py ${PYSITELIB}/sympy/printing/tests/test_str.pyc ${PYSITELIB}/sympy/printing/tests/test_str.pyo +${PYSITELIB}/sympy/printing/tests/test_tableform.py +${PYSITELIB}/sympy/printing/tests/test_tableform.pyc +${PYSITELIB}/sympy/printing/tests/test_tableform.pyo ${PYSITELIB}/sympy/printing/tree.py ${PYSITELIB}/sympy/printing/tree.pyc ${PYSITELIB}/sympy/printing/tree.pyo @@ -1440,6 +1860,9 @@ ${PYSITELIB}/sympy/series/acceleration.pyo ${PYSITELIB}/sympy/series/gruntz.py ${PYSITELIB}/sympy/series/gruntz.pyc ${PYSITELIB}/sympy/series/gruntz.pyo +${PYSITELIB}/sympy/series/kauers.py +${PYSITELIB}/sympy/series/kauers.pyc +${PYSITELIB}/sympy/series/kauers.pyo ${PYSITELIB}/sympy/series/limits.py ${PYSITELIB}/sympy/series/limits.pyc ${PYSITELIB}/sympy/series/limits.pyo @@ -1452,12 +1875,18 @@ ${PYSITELIB}/sympy/series/residues.pyo ${PYSITELIB}/sympy/series/series.py ${PYSITELIB}/sympy/series/series.pyc ${PYSITELIB}/sympy/series/series.pyo +${PYSITELIB}/sympy/series/tests/__init__.py +${PYSITELIB}/sympy/series/tests/__init__.pyc +${PYSITELIB}/sympy/series/tests/__init__.pyo ${PYSITELIB}/sympy/series/tests/test_demidovich.py ${PYSITELIB}/sympy/series/tests/test_demidovich.pyc ${PYSITELIB}/sympy/series/tests/test_demidovich.pyo ${PYSITELIB}/sympy/series/tests/test_gruntz.py ${PYSITELIB}/sympy/series/tests/test_gruntz.pyc ${PYSITELIB}/sympy/series/tests/test_gruntz.pyo +${PYSITELIB}/sympy/series/tests/test_kauers.py +${PYSITELIB}/sympy/series/tests/test_kauers.pyc +${PYSITELIB}/sympy/series/tests/test_kauers.pyo ${PYSITELIB}/sympy/series/tests/test_limits.py ${PYSITELIB}/sympy/series/tests/test_limits.pyc ${PYSITELIB}/sympy/series/tests/test_limits.pyo @@ -1476,6 +1905,15 @@ ${PYSITELIB}/sympy/series/tests/test_residues.pyo ${PYSITELIB}/sympy/series/tests/test_series.py ${PYSITELIB}/sympy/series/tests/test_series.pyc ${PYSITELIB}/sympy/series/tests/test_series.pyo +${PYSITELIB}/sympy/sets/__init__.py +${PYSITELIB}/sympy/sets/__init__.pyc +${PYSITELIB}/sympy/sets/__init__.pyo +${PYSITELIB}/sympy/sets/fancysets.py +${PYSITELIB}/sympy/sets/fancysets.pyc +${PYSITELIB}/sympy/sets/fancysets.pyo +${PYSITELIB}/sympy/sets/tests/test_fancysets.py +${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc +${PYSITELIB}/sympy/sets/tests/test_fancysets.pyo ${PYSITELIB}/sympy/simplify/__init__.py ${PYSITELIB}/sympy/simplify/__init__.pyc ${PYSITELIB}/sympy/simplify/__init__.pyo @@ -1500,6 +1938,9 @@ ${PYSITELIB}/sympy/simplify/simplify.pyo ${PYSITELIB}/sympy/simplify/sqrtdenest.py ${PYSITELIB}/sympy/simplify/sqrtdenest.pyc ${PYSITELIB}/sympy/simplify/sqrtdenest.pyo +${PYSITELIB}/sympy/simplify/tests/__init__.py +${PYSITELIB}/sympy/simplify/tests/__init__.pyc +${PYSITELIB}/sympy/simplify/tests/__init__.pyo ${PYSITELIB}/sympy/simplify/tests/test_cse.py ${PYSITELIB}/sympy/simplify/tests/test_cse.pyc ${PYSITELIB}/sympy/simplify/tests/test_cse.pyo @@ -1524,9 +1965,6 @@ ${PYSITELIB}/sympy/simplify/tests/test_traversaltools.pyo ${PYSITELIB}/sympy/simplify/traversaltools.py ${PYSITELIB}/sympy/simplify/traversaltools.pyc ${PYSITELIB}/sympy/simplify/traversaltools.pyo -${PYSITELIB}/sympy/slow_tests/test_core.py -${PYSITELIB}/sympy/slow_tests/test_core.pyc -${PYSITELIB}/sympy/slow_tests/test_core.pyo ${PYSITELIB}/sympy/solvers/__init__.py ${PYSITELIB}/sympy/solvers/__init__.pyc ${PYSITELIB}/sympy/solvers/__init__.pyo @@ -1548,6 +1986,9 @@ ${PYSITELIB}/sympy/solvers/recurr.pyo ${PYSITELIB}/sympy/solvers/solvers.py ${PYSITELIB}/sympy/solvers/solvers.pyc ${PYSITELIB}/sympy/solvers/solvers.pyo +${PYSITELIB}/sympy/solvers/tests/__init__.py +${PYSITELIB}/sympy/solvers/tests/__init__.pyc +${PYSITELIB}/sympy/solvers/tests/__init__.pyo ${PYSITELIB}/sympy/solvers/tests/test_constantsimp.py ${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyc ${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyo @@ -1578,9 +2019,42 @@ ${PYSITELIB}/sympy/statistics/__init__.pyo ${PYSITELIB}/sympy/statistics/distributions.py ${PYSITELIB}/sympy/statistics/distributions.pyc ${PYSITELIB}/sympy/statistics/distributions.pyo +${PYSITELIB}/sympy/statistics/tests/__init__.py +${PYSITELIB}/sympy/statistics/tests/__init__.pyc +${PYSITELIB}/sympy/statistics/tests/__init__.pyo ${PYSITELIB}/sympy/statistics/tests/test_statistics.py ${PYSITELIB}/sympy/statistics/tests/test_statistics.pyc ${PYSITELIB}/sympy/statistics/tests/test_statistics.pyo +${PYSITELIB}/sympy/stats/__init__.py +${PYSITELIB}/sympy/stats/__init__.pyc +${PYSITELIB}/sympy/stats/__init__.pyo +${PYSITELIB}/sympy/stats/crv.py +${PYSITELIB}/sympy/stats/crv.pyc +${PYSITELIB}/sympy/stats/crv.pyo +${PYSITELIB}/sympy/stats/crv_types.py +${PYSITELIB}/sympy/stats/crv_types.pyc +${PYSITELIB}/sympy/stats/crv_types.pyo +${PYSITELIB}/sympy/stats/frv.py +${PYSITELIB}/sympy/stats/frv.pyc +${PYSITELIB}/sympy/stats/frv.pyo +${PYSITELIB}/sympy/stats/frv_types.py +${PYSITELIB}/sympy/stats/frv_types.pyc +${PYSITELIB}/sympy/stats/frv_types.pyo +${PYSITELIB}/sympy/stats/rv.py +${PYSITELIB}/sympy/stats/rv.pyc +${PYSITELIB}/sympy/stats/rv.pyo +${PYSITELIB}/sympy/stats/rv_interface.py +${PYSITELIB}/sympy/stats/rv_interface.pyc +${PYSITELIB}/sympy/stats/rv_interface.pyo +${PYSITELIB}/sympy/stats/tests/test_continuous_rv.py +${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyc +${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyo +${PYSITELIB}/sympy/stats/tests/test_finite_rv.py +${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyc +${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyo +${PYSITELIB}/sympy/stats/tests/test_rv.py +${PYSITELIB}/sympy/stats/tests/test_rv.pyc +${PYSITELIB}/sympy/stats/tests/test_rv.pyo ${PYSITELIB}/sympy/tensor/__init__.py ${PYSITELIB}/sympy/tensor/__init__.pyc ${PYSITELIB}/sympy/tensor/__init__.pyo @@ -1590,6 +2064,9 @@ ${PYSITELIB}/sympy/tensor/index_methods.pyo ${PYSITELIB}/sympy/tensor/indexed.py ${PYSITELIB}/sympy/tensor/indexed.pyc ${PYSITELIB}/sympy/tensor/indexed.pyo +${PYSITELIB}/sympy/tensor/tests/__init__.py +${PYSITELIB}/sympy/tensor/tests/__init__.pyc +${PYSITELIB}/sympy/tensor/tests/__init__.pyo ${PYSITELIB}/sympy/tensor/tests/test_index_methods.py ${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyc ${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyo @@ -1617,6 +2094,9 @@ ${PYSITELIB}/sympy/utilities/cythonutils.pyo ${PYSITELIB}/sympy/utilities/decorator.py ${PYSITELIB}/sympy/utilities/decorator.pyc ${PYSITELIB}/sympy/utilities/decorator.pyo +${PYSITELIB}/sympy/utilities/exceptions.py +${PYSITELIB}/sympy/utilities/exceptions.pyc +${PYSITELIB}/sympy/utilities/exceptions.pyo ${PYSITELIB}/sympy/utilities/iterables.py ${PYSITELIB}/sympy/utilities/iterables.pyc ${PYSITELIB}/sympy/utilities/iterables.pyo @@ -1650,6 +2130,9 @@ ${PYSITELIB}/sympy/utilities/runtests.pyo ${PYSITELIB}/sympy/utilities/source.py ${PYSITELIB}/sympy/utilities/source.pyc ${PYSITELIB}/sympy/utilities/source.pyo +${PYSITELIB}/sympy/utilities/tests/__init__.py +${PYSITELIB}/sympy/utilities/tests/__init__.pyc +${PYSITELIB}/sympy/utilities/tests/__init__.pyo ${PYSITELIB}/sympy/utilities/tests/test_autowrap.py ${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc ${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyo diff --git a/math/py-sympy/distinfo b/math/py-sympy/distinfo index d15419ef543..b8ab47bc43d 100644 --- a/math/py-sympy/distinfo +++ b/math/py-sympy/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.6 2012/02/24 19:43:04 drochner Exp $ +$NetBSD: distinfo,v 1.7 2012/12/02 12:33:23 wen Exp $ -SHA1 (sympy-0.7.1.tar.gz) = b8609cc7e08d2883f96526ee8a4afdc90d77b911 -RMD160 (sympy-0.7.1.tar.gz) = ba6f95435d72708a12e4c4285d82d5e51d38bce4 -Size (sympy-0.7.1.tar.gz) = 3573079 bytes -SHA1 (patch-aa) = d9c2d20c3d0cb388f9df64cec9728493460dc106 +SHA1 (sympy-0.7.2.tar.gz) = cc1a030acb40c273a104d10b5fb0123841c98236 +RMD160 (sympy-0.7.2.tar.gz) = 5daa92e94a63f582b7739c214925cfd1a09a01ac +Size (sympy-0.7.2.tar.gz) = 5487284 bytes +SHA1 (patch-aa) = 60a7bb72006cf53ff9c83315abf7b660a4686090 diff --git a/math/py-sympy/patches/patch-aa b/math/py-sympy/patches/patch-aa index aace2fad874..3935986b7dd 100644 --- a/math/py-sympy/patches/patch-aa +++ b/math/py-sympy/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.5 2012/02/24 19:43:04 drochner Exp $ - ---- setup.py.orig 2011-07-30 00:04:23.000000000 +0000 +$NetBSD: patch-aa,v 1.6 2012/12/02 12:33:24 wen Exp $ +Add the python version to the name of script and man file +--- setup.py.orig 2012-12-02 19:33:28.000000000 +0000 +++ setup.py -@@ -235,10 +235,10 @@ setup( - license = 'BSD', +@@ -274,10 +274,10 @@ setup( + keywords = "Math CAS", url = 'http://code.google.com/p/sympy', packages = ['sympy'] + modules + tests, - scripts = ['bin/isympy'], |