summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorwiz <wiz>2014-01-21 08:38:04 +0000
committerwiz <wiz>2014-01-21 08:38:04 +0000
commit1fe5c018757ca737e17e0b1e2770ebcced89a91e (patch)
tree4c07bdc292931ca8bb86dbb45e2147fbcab0127c /math
parent58a665318af7b85af9c0905b875c51bbd37b3de4 (diff)
downloadpkgsrc-1fe5c018757ca737e17e0b1e2770ebcced89a91e.tar.gz
Update to 0.7.4.1:
0.7.4.1 These are the release notes for SymPy 0.7.4.1, which was released on December 15, 2013. This version of SymPy has been tested on Python 2.6, 2.7, 3.2, 3.3, and PyPy. This was a small bugfix release to fix an import issue on Windows (https://github.com/sympy/sympy/issues/2681). 0.7.4 These are the release notes for SymPy 0.7.4, which was released on December 9, 2013. This version of SymPy has been tested on Python 2.6, 2.7, 3.2, 3.3, and PyPy. Major changes Python 3 SymPy now uses a single code-base for Python 2 and Python 3. Geometric Algebra The internal representation of a multivector has been changes to more fully use the inherent capabilities of SymPy. A multivector is now represented by a linear combination of real commutative SymPy expressions and a collection of non-commutative SymPy symbols. Each non-commutative symbol represents a base in the geometric algebra of an N-dimensional vector space. The total number of non-commutative bases is 2**N - 1 (N of which are a basis for the vector space) which when including scalars give a dimension for the geometric algebra of 2**N. The different products of geometric algebra are implemented as functions that take pairs of bases symbols and return a multivector for each pair of bases. The LaTeX printing module for multivectors has been rewritten to simply extend the existing sympy LaTeX printing module and the sympy LaTeX module is now used to print the bases coefficients in the multivector representation instead of writing an entire LaTeX printing module from scratch. The main change in the geometric algebra module from the viewpoint of the user is the inteface for the gradient operator and the implementation of vector manifolds: The gradient operator is now implemented as a special vector (the user can name it grad if they wish) so the if F is a multivector field all the operations of grad on F can be written grad*F, F*grad, grad^F, F^grad, grad|F, F|grad, grad<F, F<grad, grad>F, and F>grad where **, ^, |, <, and > are the geometric product, outer product, inner product, left contraction, and right contraction, respectively. The vector manifold is defined as a parametric vector field in an embedding vector space. For example a surface in a 3-dimensional space would be a vector field as a function of two parameters. Then multivector fields can be defined on the manifold. The operations available to be performed on these fields are directional derivative, gradient, and projection. The weak point of the current manifold representation is that all fields on the manifold are represented in terms of the bases of the embedding vector space. Classical Cryptography Implements: Affine ciphers Vigenere ciphers Bifid ciphers Hill ciphers RSA and "kid RSA" linear feedback shift registers. Common Subexpression Elimination (CSE) Major changes have been done in cse internals resulting in a big speedup for larger expressions. Some changes reflect on the user side: Adds and Muls are now recursively matched ([w*x, w*x*y, w*x*y*z] ǹow turns into [(x0, w*x), (x1, x0*y)], [x0, x1, x1*z]) CSE is now not performed on the non-commutative parts of multiplications (it avoids some bugs). Pre and post optimizations are not performed by default anymore. The optimizations parameter still exists and optimizations='basic' can be used to apply previous default optimizations. These optimizations could really slow down cse on larger expressions and are no guarantee of better results. An order parameter has been introduced to control whether Adds and Muls terms are ordered independently of hashing implementation. The default order='canonical' will independently order the terms. order='none' will not do any ordering (hashes order is used) and will represent a major performance improvement for really huge expressions. In general, the output of cse will be slightly different from the previous implementation. Diophantine Equation Module This is a new addition to SymPy as a result of a GSoC project. With the current release, following five types of equations are supported. Linear Diophantine equation, a_{1}x_{1} + a_{2}x_{2} + . . . + a_{n}x_{n} = b General binary quadratic equation, ax^2 + bxy + cy^2 + dx + ey + f = 0 Homogeneous ternary quadratic equation, ax^2 + by^2 + cz^2 + dxy + eyz + fzx = 0 Extended Pythagorean equation, a_{1}x_{1}^2 + a_{2}x_{2}^2 + . . . + a_{n}x_{n}^2 = a_{n+1}x_{n+1}^2 General sum of squares, x_{1}^2 + x_{2}^2 + . . . + x_{n}^2 = k Unification of Sum, Product, and Integral classes A new superclass has been introduced to unify the treatments of indexed expressions, such as Sum, Product, and Integral. This enforced common behavior accross the objects, and provides more robust support for a number of operations. For example, Sums and Integrals can now be factored or expanded. S.subs() can be used to substitute for expressions inside a Sum/Integral/Product that are independent of the index variables, including unknown functions, for instance, Integral(f(x), (x, 1, 3)).subs(f(x), x**2), while Sum.change_index() or Integral.transform are now used for other changes of summation or integration variables. Support for finite and infinite sequence products has also been restored. In addition there were a number of fixes to the evaluation of nested sums and sums involving Kronecker delta functions, see issue 3924 and issue 3987. Series The Order object used to represent the growth of a function in series expansions as a variable tend to zero can now also represent growth as a variable tend to infinity. This also fixed a number of issues with limits. See issue 234 and issue 2670. Division by Order is disallowed, see issue 1756. Addition of Order object is now commutative, see issue 1180. Physics Initial work on gamma matrices, depending on the tensor module. Logic New objects true and false which are Basic versions of the Python builtins True and False. Other Arbitrary comparisons between expressions (like x < y) no longer have a boolean truth value. This means code like if x < y or sorted(exprs) will raise TypeError if x < y is symbolic. A typical fix of the former is if (x < y) is True (assuming the if block should be skipped if x < y is symbolic), and of the latter is sorted(exprs, key=default_sort_key), which will order the expressions in an arbitrary, but consistent way, even across platforms and Python versions. See issue 2832. Arbitrary comparisons between complex numbers (for example, I > 1) now raise TypeError as well (see PR #2510). minpoly now works with algebraic functions, like minpoly(sqrt(x) + sqrt(x + 1), y). exp can now act on any matrix, even those which are not diagonalizable. It is also more comfortable to call it, exp(m) instead of just m.exp(), as was required previously. sympify now has an option evaluate=False that will not automatically simplify expressions like x+x. Deep processing of cancel and simplify functions. simplify is now recursive through the expression tree. See e.g. issue 3923. Improved the modularity of the codebase for potential subclasses, see issue 3652. The SymPy cheatsheet was cleaned up. Backwards compatibility breaks and deprecations Removed deprecated Real class and is_Real property of Basic, see issue 1721. Removed deprecated 'each_char' option for symbols(), see issue 1919. The viewer="StringIO" option to preview() has been deprecated. Use viewer="BytesIO" instead. See issue 3984. TransformationSet has been renamed to ImageSet. Added public facing imageset function. 0.7.3 These are the release notes for SymPy 0.7.3, which was released on July 13, 2013. It can be downloaded from https://github.com/sympy/sympy/releases/tag/sympy-0.7.3. This version of SymPy has been tested on Python 2.5, 2.6, 2.7, 3.2, 3.3, and PyPy. Major changes Integration This release includes Risch integration algorithm from Aaron Meurer's 2010 Google Summer of Code project. This makes integrate much more powerful and much faster for the supported functions. The algorithm is called automatically from integrate(). For now, only transcendental elementary functions containing exp or log are supported. To access the algorithm directly, use integrate(expr, x, risch=True). The algorithm has the ability to prove that integrals are nonelementary. To determine if a function is nonelementary, integrate using risch=True. If the resulting Integral class is an instance of NonElementaryIntegral, then it is not elementary (otherwise, that part of the algorithm has just not been implemented yet). Here is an example integral that could not be computed before: >>> f = x*(x + 1)*(2*x*(x - (2*x**3 + 2*x**2 + x + 1)*log(x + 1))*exp(3*x**2) + (x**2*exp(2*x**2) - log(x + 1)**2)**2)/((x + 1)*log(x + 1)**2 - (x**3 + x**2)*exp(2*x**2))**2 >>> integrate(f, x) x + x*exp(x**2)*log(x + 1)/(x**2*exp(2*x**2) - log(x + 1)**2) - log(x + 1) - log(exp(x**2) - log(x + 1)/x)/2 + log(exp(x**2) + log(x + 1)/x)/2 ODE Built basic infrastructure of the PDE module (PR #1970) Theano Interaction SymPy expressions can now be translated into Theano expressions for numeric evaluation. This includes most standard scalar operations (e.g. sin, exp, gamma, but not beta or MeijerG) and matrices. This system generally outperforms lambdify and autowrap but does require Theano to be installed. Matrix Expressions Assumptions Matrix expressions now support inference using the new assumptions system. New predicates include invertible, symmetric, positive_definite, orthogonal, .... New Operators New operators include Adjoint, HadamardProduct, Determinant, MatrixSlice, DFT. Also, preliminary support exists for factorizations like SVD and LU. Context manager for New Assumptions Added the with assuming(*facts) context manager for new assumptions. See blogpost Backwards compatibility breaks and deprecations This is the last version of SymPy to support Python 2.5. The IPython extension, i.e., %load_ext sympy.interactive.ipythonprinting is deprecated. Use from sympy import init_printing; init_printing() instead. See issue 3914. The viewer='file' option to preview without a file name is deprecated. Use filename='name' in addition to viewer='file'. See issue 3919. The deprecated syntax Symbol('x', dummy=True), which had been deprecated since 0.7.0, has been removed. Use Dummy('x') or symbols('x', cls=Dummy) instead. See issue 3378. The deprecated Expr methods as_coeff_terms and as_coeff_factors, which have been deprecated in favor of as_coeff_mul and as_coeff_add, respectively (see also as_coeff_Mul and as_coeff_Add), were removed. The methods had been deprecated since SymPy 0.7.0. See issue 3377. The spherical harmonics have been completely rewritten. See PR #1510. Minor changes Solvers Added enhancements and improved the methods of solving exact differential equation ((PR #1955)) and ((PR #1823)) Support for differential equations with linear coefficients and those that can be reduced to separable and linear form ((PR #1940), (PR #1864), (PR #1883)) Support for first order linear general PDE's with constant coefficients ((PR #2109)) Return all found independent solutions for underdetermined systems. Handle recursive problems for which y(0) = 0. Handle matrix equations. Integration integrate will split out integrals into Piecewise expressions when conditions must hold for the answer to be true. For example, integrate(x**n, x) now gives Piecewise((log(x), Eq(n, -1), (x**(n + 1)/(n + 1), True)) (previously it just gave x**(n + 1)/(n + 1)) Calculate Gauss-Legendre and Gauss-Laguerre points and weights (PR #1497) Various new error and inverse error functions (PR #1703) Use in heurisch for more symmetric and nicer results Gruntz for expintegrals and all new erf* Li, li logarithmic integrals (PR #1708) Integration of li/Li by heurisch (PR #1712) elliptic integrals, complete and incomplete Integration of complete elliptic integrals by meijerg Integration of Piecewise with symbolic conditions. Fixed many wrong results of DiracDelta integrals. Logic Addition of SOPform and POSform functions to sympy.logic to generate boolean expressions from truth tables. Addition of simplify_logic function and enabling simplify() to reduce logic expressions to their simplest forms. Addition of bool_equals function to check equality of boolean expressions and return a mapping of variables from one expr to other that leads to the equality. Addition of disjunctive normal form methods - to_dnf, is_dnf Others gmpy version 2 is now supported Added is_algebraic_expr() method (PR #2176) Many improvements to the handling of noncommutative symbols: Better support in simplification functions, e.g. factor, trigsimp Better integration with Order() Better pattern matching Improved pattern matching including matching the identity. normalizes Jacobi polynomials Quadrature rules for orthogonal polynomials in arbitrary precision (hermite, laguerre, legendre, gen_legendre, jacobi) summation of harmonic numbers Many improvements of the polygamma functions evaluation at special arguments Connections to harmonic numbers structured full partial fraction decomposition (mainly interesting for developers) besselsimp improvements Karr summation convention New spherical harmonics improved minimal_polynomial using composition of algebraic numbers (PR #2038) faster integer polynomial factorization (PR #2148) Euler-Descartes method for quartic equations (PR #1947) algebraic operations on tensors (PR #1700) tensor canonicalization (PR #1644) Handle the simplification of summations and products over a KroneckerDelta. Implemented LaTeX printing of DiracDelta, Heaviside, KroneckerDelta and LeviCivita, also many Matrix expressions. Improved LaTeX printing of fractions, Mul in general. IPython integration and printing issues have been ironed out. Stats now supports discrete distributions (e.g. Poisson) by relying on Summation objects Added DOT printing for visualization of expression trees Added information about solvability and nilpotency of named groups.
Diffstat (limited to 'math')
-rw-r--r--math/py-sympy/Makefile40
-rw-r--r--math/py-sympy/PLIST682
-rw-r--r--math/py-sympy/distinfo9
3 files changed, 626 insertions, 105 deletions
diff --git a/math/py-sympy/Makefile b/math/py-sympy/Makefile
index 8611e135c8e..ff6cf52038d 100644
--- a/math/py-sympy/Makefile
+++ b/math/py-sympy/Makefile
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.13 2012/12/02 12:33:23 wen Exp $
-#
+# $NetBSD: Makefile,v 1.14 2014/01/21 08:38:04 wiz Exp $
-DISTNAME= sympy-0.7.2
+DISTNAME= sympy-0.7.4.1
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math
-MASTER_SITES= http://sympy.googlecode.com/files/
+MASTER_SITES= https://github.com/sympy/sympy/releases/download/${DISTNAME}/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://code.google.com/p/sympy/
@@ -12,30 +11,27 @@ COMMENT= Python library for symbolic mathematics
LICENSE= modified-bsd
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},"
+REPLACE_PYTHON+= sympy/mpmath/tests/runtests.py
+REPLACE_PYTHON+= sympy/utilities/tests/diagnose_imports.py
-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 \
- ${WRKSRC}/doc/man/isympy${PYVERSSUFFIX}.1
+SUBST_CLASSES+= manpath
+SUBST_SED.manpath= -e 's,share/man,${PKGMANDIR},'
+SUBST_FILES.manpath+= setup.py
+SUBST_STAGE.manpath= pre-configure
+SUBST_MESSAGE.manpath= Fix man page installation path.
# advanced.pidigits is broken, don't worry if it fails
do-test:
(cd ${WRKSRC}/examples && ${PYTHONBIN} all.py)
-.include "../../lang/python/extension.mk"
+post-install:
+ cd ${DESTDIR}${PREFIX} && \
+ mv bin/isympy bin/isympy${PYVERSSUFFIX} && \
+ mv ${PKGMANDIR}/man1/isympy.1 \
+ ${PKGMANDIR}/man1/isympy${PYVERSSUFFIX}.1
+
+.include "../../lang/python/application.mk"
+.include "../../lang/python/distutils.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/math/py-sympy/PLIST b/math/py-sympy/PLIST
index fb277081d81..c8b1c617a01 100644
--- a/math/py-sympy/PLIST
+++ b/math/py-sympy/PLIST
@@ -1,5 +1,6 @@
-@comment $NetBSD: PLIST,v 1.8 2012/12/02 12:33:23 wen Exp $
+@comment $NetBSD: PLIST,v 1.9 2014/01/21 08:38:04 wiz Exp $
bin/isympy${PYVERSSUFFIX}
+${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/sympy/__init__.py
${PYSITELIB}/sympy/__init__.pyc
${PYSITELIB}/sympy/__init__.pyo
@@ -12,6 +13,9 @@ ${PYSITELIB}/sympy/assumptions/__init__.pyo
${PYSITELIB}/sympy/assumptions/ask.py
${PYSITELIB}/sympy/assumptions/ask.pyc
${PYSITELIB}/sympy/assumptions/ask.pyo
+${PYSITELIB}/sympy/assumptions/ask_generated.py
+${PYSITELIB}/sympy/assumptions/ask_generated.pyc
+${PYSITELIB}/sympy/assumptions/ask_generated.pyo
${PYSITELIB}/sympy/assumptions/assume.py
${PYSITELIB}/sympy/assumptions/assume.pyc
${PYSITELIB}/sympy/assumptions/assume.pyo
@@ -21,6 +25,12 @@ ${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo
${PYSITELIB}/sympy/assumptions/handlers/calculus.py
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyc
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyo
+${PYSITELIB}/sympy/assumptions/handlers/common.py
+${PYSITELIB}/sympy/assumptions/handlers/common.pyc
+${PYSITELIB}/sympy/assumptions/handlers/common.pyo
+${PYSITELIB}/sympy/assumptions/handlers/matrices.py
+${PYSITELIB}/sympy/assumptions/handlers/matrices.pyc
+${PYSITELIB}/sympy/assumptions/handlers/matrices.pyo
${PYSITELIB}/sympy/assumptions/handlers/ntheory.py
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyc
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyo
@@ -39,6 +49,12 @@ ${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
+${PYSITELIB}/sympy/assumptions/tests/test_context.py
+${PYSITELIB}/sympy/assumptions/tests/test_context.pyc
+${PYSITELIB}/sympy/assumptions/tests/test_context.pyo
+${PYSITELIB}/sympy/assumptions/tests/test_matrices.py
+${PYSITELIB}/sympy/assumptions/tests/test_matrices.pyc
+${PYSITELIB}/sympy/assumptions/tests/test_matrices.pyo
${PYSITELIB}/sympy/assumptions/tests/test_query.py
${PYSITELIB}/sympy/assumptions/tests/test_query.pyc
${PYSITELIB}/sympy/assumptions/tests/test_query.pyo
@@ -54,6 +70,9 @@ ${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/__init__.py
+${PYSITELIB}/sympy/categories/tests/__init__.pyc
+${PYSITELIB}/sympy/categories/tests/__init__.pyo
${PYSITELIB}/sympy/categories/tests/test_baseclasses.py
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyc
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyo
@@ -93,6 +112,9 @@ ${PYSITELIB}/sympy/combinatorics/prufer.pyo
${PYSITELIB}/sympy/combinatorics/subsets.py
${PYSITELIB}/sympy/combinatorics/subsets.pyc
${PYSITELIB}/sympy/combinatorics/subsets.pyo
+${PYSITELIB}/sympy/combinatorics/tensor_can.py
+${PYSITELIB}/sympy/combinatorics/tensor_can.pyc
+${PYSITELIB}/sympy/combinatorics/tensor_can.pyo
${PYSITELIB}/sympy/combinatorics/tests/__init__.py
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo
@@ -126,6 +148,9 @@ ${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_tensor_can.py
+${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyc
+${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo
@@ -141,6 +166,15 @@ ${PYSITELIB}/sympy/combinatorics/util.pyo
${PYSITELIB}/sympy/concrete/__init__.py
${PYSITELIB}/sympy/concrete/__init__.pyc
${PYSITELIB}/sympy/concrete/__init__.pyo
+${PYSITELIB}/sympy/concrete/delta.py
+${PYSITELIB}/sympy/concrete/delta.pyc
+${PYSITELIB}/sympy/concrete/delta.pyo
+${PYSITELIB}/sympy/concrete/expr_with_intlimits.py
+${PYSITELIB}/sympy/concrete/expr_with_intlimits.pyc
+${PYSITELIB}/sympy/concrete/expr_with_intlimits.pyo
+${PYSITELIB}/sympy/concrete/expr_with_limits.py
+${PYSITELIB}/sympy/concrete/expr_with_limits.pyc
+${PYSITELIB}/sympy/concrete/expr_with_limits.pyo
${PYSITELIB}/sympy/concrete/gosper.py
${PYSITELIB}/sympy/concrete/gosper.pyc
${PYSITELIB}/sympy/concrete/gosper.pyo
@@ -153,6 +187,9 @@ ${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_delta.py
+${PYSITELIB}/sympy/concrete/tests/test_delta.pyc
+${PYSITELIB}/sympy/concrete/tests/test_delta.pyo
${PYSITELIB}/sympy/concrete/tests/test_gosper.py
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyc
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyo
@@ -171,6 +208,9 @@ ${PYSITELIB}/sympy/core/__init__.pyo
${PYSITELIB}/sympy/core/add.py
${PYSITELIB}/sympy/core/add.pyc
${PYSITELIB}/sympy/core/add.pyo
+${PYSITELIB}/sympy/core/alphabets.py
+${PYSITELIB}/sympy/core/alphabets.pyc
+${PYSITELIB}/sympy/core/alphabets.pyo
${PYSITELIB}/sympy/core/assumptions.py
${PYSITELIB}/sympy/core/assumptions.pyc
${PYSITELIB}/sympy/core/assumptions.pyo
@@ -267,6 +307,9 @@ ${PYSITELIB}/sympy/core/tests/test_basic.pyo
${PYSITELIB}/sympy/core/tests/test_cache.py
${PYSITELIB}/sympy/core/tests/test_cache.pyc
${PYSITELIB}/sympy/core/tests/test_cache.pyo
+${PYSITELIB}/sympy/core/tests/test_compatibility.py
+${PYSITELIB}/sympy/core/tests/test_compatibility.pyc
+${PYSITELIB}/sympy/core/tests/test_compatibility.pyo
${PYSITELIB}/sympy/core/tests/test_complex.py
${PYSITELIB}/sympy/core/tests/test_complex.pyc
${PYSITELIB}/sympy/core/tests/test_complex.pyo
@@ -351,9 +394,24 @@ ${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/tests/test_wester.py
+${PYSITELIB}/sympy/core/tests/test_wester.pyc
+${PYSITELIB}/sympy/core/tests/test_wester.pyo
${PYSITELIB}/sympy/core/trace.py
${PYSITELIB}/sympy/core/trace.pyc
${PYSITELIB}/sympy/core/trace.pyo
+${PYSITELIB}/sympy/crypto/__init__.py
+${PYSITELIB}/sympy/crypto/__init__.pyc
+${PYSITELIB}/sympy/crypto/__init__.pyo
+${PYSITELIB}/sympy/crypto/crypto.py
+${PYSITELIB}/sympy/crypto/crypto.pyc
+${PYSITELIB}/sympy/crypto/crypto.pyo
+${PYSITELIB}/sympy/crypto/tests/__init__.py
+${PYSITELIB}/sympy/crypto/tests/__init__.pyc
+${PYSITELIB}/sympy/crypto/tests/__init__.pyo
+${PYSITELIB}/sympy/crypto/tests/test_crypto.py
+${PYSITELIB}/sympy/crypto/tests/test_crypto.pyc
+${PYSITELIB}/sympy/crypto/tests/test_crypto.pyo
${PYSITELIB}/sympy/diffgeom/__init__.py
${PYSITELIB}/sympy/diffgeom/__init__.pyc
${PYSITELIB}/sympy/diffgeom/__init__.pyo
@@ -375,6 +433,9 @@ ${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/diffgeom/tests/test_hyperbolic_space.py
+${PYSITELIB}/sympy/diffgeom/tests/test_hyperbolic_space.pyc
+${PYSITELIB}/sympy/diffgeom/tests/test_hyperbolic_space.pyo
${PYSITELIB}/sympy/external/__init__.py
${PYSITELIB}/sympy/external/__init__.pyc
${PYSITELIB}/sympy/external/__init__.pyo
@@ -390,6 +451,9 @@ ${PYSITELIB}/sympy/external/tests/test_autowrap.pyo
${PYSITELIB}/sympy/external/tests/test_codegen.py
${PYSITELIB}/sympy/external/tests/test_codegen.pyc
${PYSITELIB}/sympy/external/tests/test_codegen.pyo
+${PYSITELIB}/sympy/external/tests/test_importtools.py
+${PYSITELIB}/sympy/external/tests/test_importtools.pyc
+${PYSITELIB}/sympy/external/tests/test_importtools.pyo
${PYSITELIB}/sympy/external/tests/test_numpy.py
${PYSITELIB}/sympy/external/tests/test_numpy.pyc
${PYSITELIB}/sympy/external/tests/test_numpy.pyo
@@ -483,6 +547,9 @@ ${PYSITELIB}/sympy/functions/special/bsplines.pyo
${PYSITELIB}/sympy/functions/special/delta_functions.py
${PYSITELIB}/sympy/functions/special/delta_functions.pyc
${PYSITELIB}/sympy/functions/special/delta_functions.pyo
+${PYSITELIB}/sympy/functions/special/elliptic_integrals.py
+${PYSITELIB}/sympy/functions/special/elliptic_integrals.pyc
+${PYSITELIB}/sympy/functions/special/elliptic_integrals.pyo
${PYSITELIB}/sympy/functions/special/error_functions.py
${PYSITELIB}/sympy/functions/special/error_functions.pyc
${PYSITELIB}/sympy/functions/special/error_functions.pyo
@@ -513,6 +580,9 @@ ${PYSITELIB}/sympy/functions/special/tests/test_bsplines.pyo
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.pyo
+${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.py
+${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.pyc
+${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.pyo
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyo
@@ -537,21 +607,39 @@ ${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.pyo
${PYSITELIB}/sympy/functions/special/zeta_functions.py
${PYSITELIB}/sympy/functions/special/zeta_functions.pyc
${PYSITELIB}/sympy/functions/special/zeta_functions.pyo
-${PYSITELIB}/sympy/galgebra/GA.py
-${PYSITELIB}/sympy/galgebra/GA.pyc
-${PYSITELIB}/sympy/galgebra/GA.pyo
${PYSITELIB}/sympy/galgebra/__init__.py
${PYSITELIB}/sympy/galgebra/__init__.pyc
${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/debug.py
+${PYSITELIB}/sympy/galgebra/debug.pyc
+${PYSITELIB}/sympy/galgebra/debug.pyo
+${PYSITELIB}/sympy/galgebra/ga.py
+${PYSITELIB}/sympy/galgebra/ga.pyc
+${PYSITELIB}/sympy/galgebra/ga.pyo
+${PYSITELIB}/sympy/galgebra/manifold.py
+${PYSITELIB}/sympy/galgebra/manifold.pyc
+${PYSITELIB}/sympy/galgebra/manifold.pyo
+${PYSITELIB}/sympy/galgebra/ncutil.py
+${PYSITELIB}/sympy/galgebra/ncutil.pyc
+${PYSITELIB}/sympy/galgebra/ncutil.pyo
+${PYSITELIB}/sympy/galgebra/precedence.py
+${PYSITELIB}/sympy/galgebra/precedence.pyc
+${PYSITELIB}/sympy/galgebra/precedence.pyo
+${PYSITELIB}/sympy/galgebra/printing.py
+${PYSITELIB}/sympy/galgebra/printing.pyc
+${PYSITELIB}/sympy/galgebra/printing.pyo
+${PYSITELIB}/sympy/galgebra/stringarrays.py
+${PYSITELIB}/sympy/galgebra/stringarrays.pyc
+${PYSITELIB}/sympy/galgebra/stringarrays.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
+${PYSITELIB}/sympy/galgebra/tests/test_ga.py
+${PYSITELIB}/sympy/galgebra/tests/test_ga.pyc
+${PYSITELIB}/sympy/galgebra/tests/test_ga.pyo
+${PYSITELIB}/sympy/galgebra/vector.py
+${PYSITELIB}/sympy/galgebra/vector.pyc
+${PYSITELIB}/sympy/galgebra/vector.pyo
${PYSITELIB}/sympy/geometry/__init__.py
${PYSITELIB}/sympy/geometry/__init__.pyc
${PYSITELIB}/sympy/geometry/__init__.pyo
@@ -591,42 +679,72 @@ ${PYSITELIB}/sympy/integrals/__init__.pyo
${PYSITELIB}/sympy/integrals/deltafunctions.py
${PYSITELIB}/sympy/integrals/deltafunctions.pyc
${PYSITELIB}/sympy/integrals/deltafunctions.pyo
+${PYSITELIB}/sympy/integrals/heurisch.py
+${PYSITELIB}/sympy/integrals/heurisch.pyc
+${PYSITELIB}/sympy/integrals/heurisch.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/manualintegrate.py
+${PYSITELIB}/sympy/integrals/manualintegrate.pyc
+${PYSITELIB}/sympy/integrals/manualintegrate.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/prde.py
+${PYSITELIB}/sympy/integrals/prde.pyc
+${PYSITELIB}/sympy/integrals/prde.pyo
+${PYSITELIB}/sympy/integrals/quadrature.py
+${PYSITELIB}/sympy/integrals/quadrature.pyc
+${PYSITELIB}/sympy/integrals/quadrature.pyo
${PYSITELIB}/sympy/integrals/rationaltools.py
${PYSITELIB}/sympy/integrals/rationaltools.pyc
${PYSITELIB}/sympy/integrals/rationaltools.pyo
+${PYSITELIB}/sympy/integrals/rde.py
+${PYSITELIB}/sympy/integrals/rde.pyc
+${PYSITELIB}/sympy/integrals/rde.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_deltafunctions.py
+${PYSITELIB}/sympy/integrals/tests/test_deltafunctions.pyc
+${PYSITELIB}/sympy/integrals/tests/test_deltafunctions.pyo
+${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.py
+${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.pyc
+${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.pyo
+${PYSITELIB}/sympy/integrals/tests/test_heurisch.py
+${PYSITELIB}/sympy/integrals/tests/test_heurisch.pyc
+${PYSITELIB}/sympy/integrals/tests/test_heurisch.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_manual.py
+${PYSITELIB}/sympy/integrals/tests/test_manual.pyc
+${PYSITELIB}/sympy/integrals/tests/test_manual.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_prde.py
+${PYSITELIB}/sympy/integrals/tests/test_prde.pyc
+${PYSITELIB}/sympy/integrals/tests/test_prde.pyo
+${PYSITELIB}/sympy/integrals/tests/test_quadrature.py
+${PYSITELIB}/sympy/integrals/tests/test_quadrature.pyc
+${PYSITELIB}/sympy/integrals/tests/test_quadrature.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_rde.py
+${PYSITELIB}/sympy/integrals/tests/test_rde.pyc
+${PYSITELIB}/sympy/integrals/tests/test_rde.pyo
${PYSITELIB}/sympy/integrals/tests/test_risch.py
${PYSITELIB}/sympy/integrals/tests/test_risch.pyc
${PYSITELIB}/sympy/integrals/tests/test_risch.pyo
@@ -654,12 +772,96 @@ ${PYSITELIB}/sympy/interactive/printing.pyo
${PYSITELIB}/sympy/interactive/session.py
${PYSITELIB}/sympy/interactive/session.pyc
${PYSITELIB}/sympy/interactive/session.pyo
+${PYSITELIB}/sympy/interactive/tests/__init__.py
+${PYSITELIB}/sympy/interactive/tests/__init__.pyc
+${PYSITELIB}/sympy/interactive/tests/__init__.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/interactive/tests/test_ipythonprinting.py
+${PYSITELIB}/sympy/interactive/tests/test_ipythonprinting.pyc
+${PYSITELIB}/sympy/interactive/tests/test_ipythonprinting.pyo
+${PYSITELIB}/sympy/liealgebras/__init__.py
+${PYSITELIB}/sympy/liealgebras/__init__.pyc
+${PYSITELIB}/sympy/liealgebras/__init__.pyo
+${PYSITELIB}/sympy/liealgebras/cartan_matrix.py
+${PYSITELIB}/sympy/liealgebras/cartan_matrix.pyc
+${PYSITELIB}/sympy/liealgebras/cartan_matrix.pyo
+${PYSITELIB}/sympy/liealgebras/cartan_type.py
+${PYSITELIB}/sympy/liealgebras/cartan_type.pyc
+${PYSITELIB}/sympy/liealgebras/cartan_type.pyo
+${PYSITELIB}/sympy/liealgebras/dynkin_diagram.py
+${PYSITELIB}/sympy/liealgebras/dynkin_diagram.pyc
+${PYSITELIB}/sympy/liealgebras/dynkin_diagram.pyo
+${PYSITELIB}/sympy/liealgebras/root_system.py
+${PYSITELIB}/sympy/liealgebras/root_system.pyc
+${PYSITELIB}/sympy/liealgebras/root_system.pyo
+${PYSITELIB}/sympy/liealgebras/tests/__init__.py
+${PYSITELIB}/sympy/liealgebras/tests/__init__.pyc
+${PYSITELIB}/sympy/liealgebras/tests/__init__.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.py
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.py
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.py
+${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_root_system.py
+${PYSITELIB}/sympy/liealgebras/tests/test_root_system.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_root_system.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_A.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_A.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_A.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_B.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_B.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_B.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_C.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_C.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_C.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_D.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_D.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_D.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_E.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_E.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_E.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_F.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_F.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_F.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_type_G.py
+${PYSITELIB}/sympy/liealgebras/tests/test_type_G.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_type_G.pyo
+${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.py
+${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.pyc
+${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.pyo
+${PYSITELIB}/sympy/liealgebras/type_a.py
+${PYSITELIB}/sympy/liealgebras/type_a.pyc
+${PYSITELIB}/sympy/liealgebras/type_a.pyo
+${PYSITELIB}/sympy/liealgebras/type_b.py
+${PYSITELIB}/sympy/liealgebras/type_b.pyc
+${PYSITELIB}/sympy/liealgebras/type_b.pyo
+${PYSITELIB}/sympy/liealgebras/type_c.py
+${PYSITELIB}/sympy/liealgebras/type_c.pyc
+${PYSITELIB}/sympy/liealgebras/type_c.pyo
+${PYSITELIB}/sympy/liealgebras/type_d.py
+${PYSITELIB}/sympy/liealgebras/type_d.pyc
+${PYSITELIB}/sympy/liealgebras/type_d.pyo
+${PYSITELIB}/sympy/liealgebras/type_e.py
+${PYSITELIB}/sympy/liealgebras/type_e.pyc
+${PYSITELIB}/sympy/liealgebras/type_e.pyo
+${PYSITELIB}/sympy/liealgebras/type_f.py
+${PYSITELIB}/sympy/liealgebras/type_f.pyc
+${PYSITELIB}/sympy/liealgebras/type_f.pyo
+${PYSITELIB}/sympy/liealgebras/type_g.py
+${PYSITELIB}/sympy/liealgebras/type_g.pyc
+${PYSITELIB}/sympy/liealgebras/type_g.pyo
+${PYSITELIB}/sympy/liealgebras/weyl_group.py
+${PYSITELIB}/sympy/liealgebras/weyl_group.pyc
+${PYSITELIB}/sympy/liealgebras/weyl_group.pyo
${PYSITELIB}/sympy/logic/__init__.py
${PYSITELIB}/sympy/logic/__init__.pyc
${PYSITELIB}/sympy/logic/__init__.pyo
@@ -699,15 +901,36 @@ ${PYSITELIB}/sympy/logic/utilities/dimacs.pyo
${PYSITELIB}/sympy/matrices/__init__.py
${PYSITELIB}/sympy/matrices/__init__.pyc
${PYSITELIB}/sympy/matrices/__init__.pyo
+${PYSITELIB}/sympy/matrices/dense.py
+${PYSITELIB}/sympy/matrices/dense.pyc
+${PYSITELIB}/sympy/matrices/dense.pyo
${PYSITELIB}/sympy/matrices/expressions/__init__.py
${PYSITELIB}/sympy/matrices/expressions/__init__.pyc
${PYSITELIB}/sympy/matrices/expressions/__init__.pyo
+${PYSITELIB}/sympy/matrices/expressions/adjoint.py
+${PYSITELIB}/sympy/matrices/expressions/adjoint.pyc
+${PYSITELIB}/sympy/matrices/expressions/adjoint.pyo
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo
+${PYSITELIB}/sympy/matrices/expressions/determinant.py
+${PYSITELIB}/sympy/matrices/expressions/determinant.pyc
+${PYSITELIB}/sympy/matrices/expressions/determinant.pyo
+${PYSITELIB}/sympy/matrices/expressions/diagonal.py
+${PYSITELIB}/sympy/matrices/expressions/diagonal.pyc
+${PYSITELIB}/sympy/matrices/expressions/diagonal.pyo
+${PYSITELIB}/sympy/matrices/expressions/factorizations.py
+${PYSITELIB}/sympy/matrices/expressions/factorizations.pyc
+${PYSITELIB}/sympy/matrices/expressions/factorizations.pyo
+${PYSITELIB}/sympy/matrices/expressions/fourier.py
+${PYSITELIB}/sympy/matrices/expressions/fourier.pyc
+${PYSITELIB}/sympy/matrices/expressions/fourier.pyo
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.py
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyo
+${PYSITELIB}/sympy/matrices/expressions/hadamard.py
+${PYSITELIB}/sympy/matrices/expressions/hadamard.pyc
+${PYSITELIB}/sympy/matrices/expressions/hadamard.pyo
${PYSITELIB}/sympy/matrices/expressions/inverse.py
${PYSITELIB}/sympy/matrices/expressions/inverse.pyc
${PYSITELIB}/sympy/matrices/expressions/inverse.pyo
@@ -723,30 +946,78 @@ ${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/slice.py
+${PYSITELIB}/sympy/matrices/expressions/slice.pyc
+${PYSITELIB}/sympy/matrices/expressions/slice.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_adjoint.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.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_hadamard.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_hadamard.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_hadamard.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_inverse.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_inverse.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_inverse.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.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/tests/test_slice.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyo
+${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.py
+${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyc
+${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.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/immutable.py
+${PYSITELIB}/sympy/matrices/immutable.pyc
+${PYSITELIB}/sympy/matrices/immutable.pyo
${PYSITELIB}/sympy/matrices/matrices.py
${PYSITELIB}/sympy/matrices/matrices.pyc
${PYSITELIB}/sympy/matrices/matrices.pyo
+${PYSITELIB}/sympy/matrices/sparse.py
+${PYSITELIB}/sympy/matrices/sparse.pyc
+${PYSITELIB}/sympy/matrices/sparse.pyo
+${PYSITELIB}/sympy/matrices/sparsetools.py
+${PYSITELIB}/sympy/matrices/sparsetools.pyc
+${PYSITELIB}/sympy/matrices/sparsetools.pyo
${PYSITELIB}/sympy/matrices/tests/__init__.py
${PYSITELIB}/sympy/matrices/tests/__init__.pyc
${PYSITELIB}/sympy/matrices/tests/__init__.pyo
@@ -759,6 +1030,12 @@ ${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
+${PYSITELIB}/sympy/matrices/tests/test_sparse.py
+${PYSITELIB}/sympy/matrices/tests/test_sparse.pyc
+${PYSITELIB}/sympy/matrices/tests/test_sparse.pyo
+${PYSITELIB}/sympy/matrices/tests/test_sparsetools.py
+${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyc
+${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyo
${PYSITELIB}/sympy/mpmath/__init__.py
${PYSITELIB}/sympy/mpmath/__init__.pyc
${PYSITELIB}/sympy/mpmath/__init__.pyo
@@ -856,9 +1133,11 @@ ${PYSITELIB}/sympy/mpmath/libmp/backend.py
${PYSITELIB}/sympy/mpmath/libmp/backend.pyc
${PYSITELIB}/sympy/mpmath/libmp/backend.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py2.py
-${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyc
-${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyo
+${PLIST.py2x}${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyc
+${PLIST.py2x}${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py3.py
+${PLIST.py3x}${PYSITELIB}/sympy/mpmath/libmp/exec_py3.pyc
+${PLIST.py3x}${PYSITELIB}/sympy/mpmath/libmp/exec_py3.pyo
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.py
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyc
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyo
@@ -905,6 +1184,8 @@ ${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.py
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.py
+${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.pyc
+${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.py
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.pyo
@@ -996,6 +1277,8 @@ ${PYSITELIB}/sympy/mpmath/tests/test_visualization.py
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyc
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyo
${PYSITELIB}/sympy/mpmath/tests/torture.py
+${PYSITELIB}/sympy/mpmath/tests/torture.pyc
+${PYSITELIB}/sympy/mpmath/tests/torture.pyo
${PYSITELIB}/sympy/mpmath/usertools.py
${PYSITELIB}/sympy/mpmath/usertools.pyc
${PYSITELIB}/sympy/mpmath/usertools.pyo
@@ -1041,9 +1324,6 @@ ${PYSITELIB}/sympy/parsing/__init__.pyo
${PYSITELIB}/sympy/parsing/ast_parser.py
${PYSITELIB}/sympy/parsing/ast_parser.pyc
${PYSITELIB}/sympy/parsing/ast_parser.pyo
-${PYSITELIB}/sympy/parsing/ast_parser_python25.py
-${PYSITELIB}/sympy/parsing/ast_parser_python25.pyc
-${PYSITELIB}/sympy/parsing/ast_parser_python25.pyo
${PYSITELIB}/sympy/parsing/mathematica.py
${PYSITELIB}/sympy/parsing/mathematica.pyc
${PYSITELIB}/sympy/parsing/mathematica.pyo
@@ -1059,18 +1339,36 @@ ${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_implicit_multiplication_application.py
+${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc
+${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo
${PYSITELIB}/sympy/parsing/tests/test_mathematica.py
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo
${PYSITELIB}/sympy/parsing/tests/test_maxima.py
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo
+${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.py
+${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyc
+${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.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/hep/__init__.py
+${PYSITELIB}/sympy/physics/hep/__init__.pyc
+${PYSITELIB}/sympy/physics/hep/__init__.pyo
+${PYSITELIB}/sympy/physics/hep/gamma_matrices.py
+${PYSITELIB}/sympy/physics/hep/gamma_matrices.pyc
+${PYSITELIB}/sympy/physics/hep/gamma_matrices.pyo
+${PYSITELIB}/sympy/physics/hep/tests/__init__.py
+${PYSITELIB}/sympy/physics/hep/tests/__init__.pyc
+${PYSITELIB}/sympy/physics/hep/tests/__init__.pyo
+${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.py
+${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.pyc
+${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.pyo
${PYSITELIB}/sympy/physics/hydrogen.py
${PYSITELIB}/sympy/physics/hydrogen.pyc
${PYSITELIB}/sympy/physics/hydrogen.pyo
@@ -1113,6 +1411,12 @@ ${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_kane2.py
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyc
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyo
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.py
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyc
+${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.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
@@ -1194,6 +1498,9 @@ ${PYSITELIB}/sympy/physics/quantum/piab.pyo
${PYSITELIB}/sympy/physics/quantum/qapply.py
${PYSITELIB}/sympy/physics/quantum/qapply.pyc
${PYSITELIB}/sympy/physics/quantum/qapply.pyo
+${PYSITELIB}/sympy/physics/quantum/qasm.py
+${PYSITELIB}/sympy/physics/quantum/qasm.pyc
+${PYSITELIB}/sympy/physics/quantum/qasm.pyo
${PYSITELIB}/sympy/physics/quantum/qexpr.py
${PYSITELIB}/sympy/physics/quantum/qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/qexpr.pyo
@@ -1206,6 +1513,9 @@ ${PYSITELIB}/sympy/physics/quantum/qubit.pyo
${PYSITELIB}/sympy/physics/quantum/represent.py
${PYSITELIB}/sympy/physics/quantum/represent.pyc
${PYSITELIB}/sympy/physics/quantum/represent.pyo
+${PYSITELIB}/sympy/physics/quantum/sho1d.py
+${PYSITELIB}/sympy/physics/quantum/sho1d.pyc
+${PYSITELIB}/sympy/physics/quantum/sho1d.pyo
${PYSITELIB}/sympy/physics/quantum/shor.py
${PYSITELIB}/sympy/physics/quantum/shor.pyc
${PYSITELIB}/sympy/physics/quantum/shor.pyo
@@ -1230,6 +1540,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_circuitplot.py
+${PYSITELIB}/sympy/physics/quantum/tests/test_circuitplot.pyc
+${PYSITELIB}/sympy/physics/quantum/tests/test_circuitplot.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
@@ -1278,6 +1591,9 @@ ${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
+${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.py
+${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.pyc
+${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyo
@@ -1290,6 +1606,9 @@ ${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.py
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyo
+${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.py
+${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.pyc
+${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.py
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyo
@@ -1359,6 +1678,9 @@ ${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/__init__.py
+${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyc
+${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.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
@@ -1422,6 +1744,9 @@ ${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/__init__.py
+${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyc
+${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.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
@@ -1455,6 +1780,9 @@ ${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/__init__.py
+${PYSITELIB}/sympy/polys/agca/tests/__init__.pyc
+${PYSITELIB}/sympy/polys/agca/tests/__init__.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
@@ -1464,6 +1792,9 @@ ${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/compatibility.py
+${PYSITELIB}/sympy/polys/compatibility.pyc
+${PYSITELIB}/sympy/polys/compatibility.pyo
${PYSITELIB}/sympy/polys/constructor.py
${PYSITELIB}/sympy/polys/constructor.pyc
${PYSITELIB}/sympy/polys/constructor.pyo
@@ -1479,9 +1810,6 @@ ${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
@@ -1491,12 +1819,18 @@ ${PYSITELIB}/sympy/polys/domains/algebraicfield.pyo
${PYSITELIB}/sympy/polys/domains/characteristiczero.py
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyc
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyo
+${PYSITELIB}/sympy/polys/domains/complexfield.py
+${PYSITELIB}/sympy/polys/domains/complexfield.pyc
+${PYSITELIB}/sympy/polys/domains/complexfield.pyo
${PYSITELIB}/sympy/polys/domains/compositedomain.py
${PYSITELIB}/sympy/polys/domains/compositedomain.pyc
${PYSITELIB}/sympy/polys/domains/compositedomain.pyo
${PYSITELIB}/sympy/polys/domains/domain.py
${PYSITELIB}/sympy/polys/domains/domain.pyc
${PYSITELIB}/sympy/polys/domains/domain.pyo
+${PYSITELIB}/sympy/polys/domains/domainelement.py
+${PYSITELIB}/sympy/polys/domains/domainelement.pyc
+${PYSITELIB}/sympy/polys/domains/domainelement.pyo
${PYSITELIB}/sympy/polys/domains/expressiondomain.py
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyc
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyo
@@ -1527,78 +1861,90 @@ ${PYSITELIB}/sympy/polys/domains/integerring.pyo
${PYSITELIB}/sympy/polys/domains/modularinteger.py
${PYSITELIB}/sympy/polys/domains/modularinteger.pyc
${PYSITELIB}/sympy/polys/domains/modularinteger.pyo
-${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.py
-${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.pyc
-${PYSITELIB}/sympy/polys/domains/mpmathcomplexdomain.pyo
-${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.py
-${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.pyc
-${PYSITELIB}/sympy/polys/domains/mpmathrealdomain.pyo
+${PYSITELIB}/sympy/polys/domains/mpelements.py
+${PYSITELIB}/sympy/polys/domains/mpelements.pyc
+${PYSITELIB}/sympy/polys/domains/mpelements.pyo
+${PYSITELIB}/sympy/polys/domains/old_fractionfield.py
+${PYSITELIB}/sympy/polys/domains/old_fractionfield.pyc
+${PYSITELIB}/sympy/polys/domains/old_fractionfield.pyo
+${PYSITELIB}/sympy/polys/domains/old_polynomialring.py
+${PYSITELIB}/sympy/polys/domains/old_polynomialring.pyc
+${PYSITELIB}/sympy/polys/domains/old_polynomialring.pyo
${PYSITELIB}/sympy/polys/domains/polynomialring.py
${PYSITELIB}/sympy/polys/domains/polynomialring.pyc
${PYSITELIB}/sympy/polys/domains/polynomialring.pyo
-${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.py
-${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.pyc
-${PYSITELIB}/sympy/polys/domains/pythoncomplexdomain.pyo
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.py
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/pythonintegerring.py
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyc
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyo
+${PYSITELIB}/sympy/polys/domains/pythonrational.py
+${PYSITELIB}/sympy/polys/domains/pythonrational.pyc
+${PYSITELIB}/sympy/polys/domains/pythonrational.pyo
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.py
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyo
-${PYSITELIB}/sympy/polys/domains/pythonrationaltype.py
-${PYSITELIB}/sympy/polys/domains/pythonrationaltype.pyc
-${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
-${PYSITELIB}/sympy/polys/domains/realdomain.py
-${PYSITELIB}/sympy/polys/domains/realdomain.pyc
-${PYSITELIB}/sympy/polys/domains/realdomain.pyo
+${PYSITELIB}/sympy/polys/domains/realfield.py
+${PYSITELIB}/sympy/polys/domains/realfield.pyc
+${PYSITELIB}/sympy/polys/domains/realfield.pyo
${PYSITELIB}/sympy/polys/domains/ring.py
${PYSITELIB}/sympy/polys/domains/ring.pyc
${PYSITELIB}/sympy/polys/domains/ring.pyo
${PYSITELIB}/sympy/polys/domains/simpledomain.py
${PYSITELIB}/sympy/polys/domains/simpledomain.pyc
${PYSITELIB}/sympy/polys/domains/simpledomain.pyo
-${PYSITELIB}/sympy/polys/domains/sympyfinitefield.py
-${PYSITELIB}/sympy/polys/domains/sympyfinitefield.pyc
-${PYSITELIB}/sympy/polys/domains/sympyfinitefield.pyo
-${PYSITELIB}/sympy/polys/domains/sympyintegerring.py
-${PYSITELIB}/sympy/polys/domains/sympyintegerring.pyc
-${PYSITELIB}/sympy/polys/domains/sympyintegerring.pyo
-${PYSITELIB}/sympy/polys/domains/sympyrationalfield.py
-${PYSITELIB}/sympy/polys/domains/sympyrationalfield.pyc
-${PYSITELIB}/sympy/polys/domains/sympyrationalfield.pyo
-${PYSITELIB}/sympy/polys/domains/sympyrealdomain.py
-${PYSITELIB}/sympy/polys/domains/sympyrealdomain.pyc
-${PYSITELIB}/sympy/polys/domains/sympyrealdomain.pyo
+${PYSITELIB}/sympy/polys/domains/tests/__init__.py
+${PYSITELIB}/sympy/polys/domains/tests/__init__.pyc
+${PYSITELIB}/sympy/polys/domains/tests/__init__.pyo
+${PYSITELIB}/sympy/polys/domains/tests/test_domains.py
+${PYSITELIB}/sympy/polys/domains/tests/test_domains.pyc
+${PYSITELIB}/sympy/polys/domains/tests/test_domains.pyo
+${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.py
+${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.pyc
+${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.pyo
+${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.py
+${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.pyc
+${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.pyo
${PYSITELIB}/sympy/polys/euclidtools.py
${PYSITELIB}/sympy/polys/euclidtools.pyc
${PYSITELIB}/sympy/polys/euclidtools.pyo
${PYSITELIB}/sympy/polys/factortools.py
${PYSITELIB}/sympy/polys/factortools.pyc
${PYSITELIB}/sympy/polys/factortools.pyo
+${PYSITELIB}/sympy/polys/fglmtools.py
+${PYSITELIB}/sympy/polys/fglmtools.pyc
+${PYSITELIB}/sympy/polys/fglmtools.pyo
+${PYSITELIB}/sympy/polys/fields.py
+${PYSITELIB}/sympy/polys/fields.pyc
+${PYSITELIB}/sympy/polys/fields.pyo
${PYSITELIB}/sympy/polys/galoistools.py
${PYSITELIB}/sympy/polys/galoistools.pyc
${PYSITELIB}/sympy/polys/galoistools.pyo
${PYSITELIB}/sympy/polys/groebnertools.py
${PYSITELIB}/sympy/polys/groebnertools.pyc
${PYSITELIB}/sympy/polys/groebnertools.pyo
-${PYSITELIB}/sympy/polys/monomialtools.py
-${PYSITELIB}/sympy/polys/monomialtools.pyc
-${PYSITELIB}/sympy/polys/monomialtools.pyo
+${PYSITELIB}/sympy/polys/heuristicgcd.py
+${PYSITELIB}/sympy/polys/heuristicgcd.pyc
+${PYSITELIB}/sympy/polys/heuristicgcd.pyo
+${PYSITELIB}/sympy/polys/modulargcd.py
+${PYSITELIB}/sympy/polys/modulargcd.pyc
+${PYSITELIB}/sympy/polys/modulargcd.pyo
+${PYSITELIB}/sympy/polys/monomials.py
+${PYSITELIB}/sympy/polys/monomials.pyc
+${PYSITELIB}/sympy/polys/monomials.pyo
${PYSITELIB}/sympy/polys/numberfields.py
${PYSITELIB}/sympy/polys/numberfields.pyc
${PYSITELIB}/sympy/polys/numberfields.pyo
+${PYSITELIB}/sympy/polys/orderings.py
+${PYSITELIB}/sympy/polys/orderings.pyc
+${PYSITELIB}/sympy/polys/orderings.pyo
${PYSITELIB}/sympy/polys/orthopolys.py
${PYSITELIB}/sympy/polys/orthopolys.pyc
${PYSITELIB}/sympy/polys/orthopolys.pyo
@@ -1623,6 +1969,9 @@ ${PYSITELIB}/sympy/polys/polyfuncs.pyo
${PYSITELIB}/sympy/polys/polyoptions.py
${PYSITELIB}/sympy/polys/polyoptions.pyc
${PYSITELIB}/sympy/polys/polyoptions.pyo
+${PYSITELIB}/sympy/polys/polyquinticconst.py
+${PYSITELIB}/sympy/polys/polyquinticconst.pyc
+${PYSITELIB}/sympy/polys/polyquinticconst.pyo
${PYSITELIB}/sympy/polys/polyroots.py
${PYSITELIB}/sympy/polys/polyroots.pyc
${PYSITELIB}/sympy/polys/polyroots.pyo
@@ -1635,12 +1984,18 @@ ${PYSITELIB}/sympy/polys/polyutils.pyo
${PYSITELIB}/sympy/polys/rationaltools.py
${PYSITELIB}/sympy/polys/rationaltools.pyc
${PYSITELIB}/sympy/polys/rationaltools.pyo
+${PYSITELIB}/sympy/polys/rings.py
+${PYSITELIB}/sympy/polys/rings.pyc
+${PYSITELIB}/sympy/polys/rings.pyo
${PYSITELIB}/sympy/polys/rootisolation.py
${PYSITELIB}/sympy/polys/rootisolation.pyc
${PYSITELIB}/sympy/polys/rootisolation.pyo
${PYSITELIB}/sympy/polys/rootoftools.py
${PYSITELIB}/sympy/polys/rootoftools.pyc
${PYSITELIB}/sympy/polys/rootoftools.pyo
+${PYSITELIB}/sympy/polys/solvers.py
+${PYSITELIB}/sympy/polys/solvers.pyc
+${PYSITELIB}/sympy/polys/solvers.pyo
${PYSITELIB}/sympy/polys/specialpolys.py
${PYSITELIB}/sympy/polys/specialpolys.pyc
${PYSITELIB}/sympy/polys/specialpolys.pyo
@@ -1665,30 +2020,39 @@ ${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
${PYSITELIB}/sympy/polys/tests/test_euclidtools.py
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyc
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyo
${PYSITELIB}/sympy/polys/tests/test_factortools.py
${PYSITELIB}/sympy/polys/tests/test_factortools.pyc
${PYSITELIB}/sympy/polys/tests/test_factortools.pyo
+${PYSITELIB}/sympy/polys/tests/test_fields.py
+${PYSITELIB}/sympy/polys/tests/test_fields.pyc
+${PYSITELIB}/sympy/polys/tests/test_fields.pyo
${PYSITELIB}/sympy/polys/tests/test_galoistools.py
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyc
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyo
${PYSITELIB}/sympy/polys/tests/test_groebnertools.py
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyc
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyo
-${PYSITELIB}/sympy/polys/tests/test_monomialtools.py
-${PYSITELIB}/sympy/polys/tests/test_monomialtools.pyc
-${PYSITELIB}/sympy/polys/tests/test_monomialtools.pyo
+${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.py
+${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.pyc
+${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.pyo
+${PYSITELIB}/sympy/polys/tests/test_injections.py
+${PYSITELIB}/sympy/polys/tests/test_injections.pyc
+${PYSITELIB}/sympy/polys/tests/test_injections.pyo
+${PYSITELIB}/sympy/polys/tests/test_modulargcd.py
+${PYSITELIB}/sympy/polys/tests/test_modulargcd.pyc
+${PYSITELIB}/sympy/polys/tests/test_modulargcd.pyo
+${PYSITELIB}/sympy/polys/tests/test_monomials.py
+${PYSITELIB}/sympy/polys/tests/test_monomials.pyc
+${PYSITELIB}/sympy/polys/tests/test_monomials.pyo
${PYSITELIB}/sympy/polys/tests/test_numberfields.py
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyc
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyo
+${PYSITELIB}/sympy/polys/tests/test_orderings.py
+${PYSITELIB}/sympy/polys/tests/test_orderings.pyc
+${PYSITELIB}/sympy/polys/tests/test_orderings.pyo
${PYSITELIB}/sympy/polys/tests/test_orthopolys.py
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyc
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyo
@@ -1701,9 +2065,6 @@ ${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
@@ -1716,18 +2077,24 @@ ${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_pythonrational.py
+${PYSITELIB}/sympy/polys/tests/test_pythonrational.pyc
+${PYSITELIB}/sympy/polys/tests/test_pythonrational.pyo
${PYSITELIB}/sympy/polys/tests/test_rationaltools.py
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyc
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyo
+${PYSITELIB}/sympy/polys/tests/test_rings.py
+${PYSITELIB}/sympy/polys/tests/test_rings.pyc
+${PYSITELIB}/sympy/polys/tests/test_rings.pyo
${PYSITELIB}/sympy/polys/tests/test_rootisolation.py
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyc
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyo
${PYSITELIB}/sympy/polys/tests/test_rootoftools.py
${PYSITELIB}/sympy/polys/tests/test_rootoftools.pyc
${PYSITELIB}/sympy/polys/tests/test_rootoftools.pyo
+${PYSITELIB}/sympy/polys/tests/test_solvers.py
+${PYSITELIB}/sympy/polys/tests/test_solvers.pyc
+${PYSITELIB}/sympy/polys/tests/test_solvers.pyo
${PYSITELIB}/sympy/polys/tests/test_specialpolys.py
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyc
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyo
@@ -1746,6 +2113,12 @@ ${PYSITELIB}/sympy/printing/codeprinter.pyo
${PYSITELIB}/sympy/printing/conventions.py
${PYSITELIB}/sympy/printing/conventions.pyc
${PYSITELIB}/sympy/printing/conventions.pyo
+${PYSITELIB}/sympy/printing/defaults.py
+${PYSITELIB}/sympy/printing/defaults.pyc
+${PYSITELIB}/sympy/printing/defaults.pyo
+${PYSITELIB}/sympy/printing/dot.py
+${PYSITELIB}/sympy/printing/dot.pyc
+${PYSITELIB}/sympy/printing/dot.pyo
${PYSITELIB}/sympy/printing/fcode.py
${PYSITELIB}/sympy/printing/fcode.pyc
${PYSITELIB}/sympy/printing/fcode.pyo
@@ -1815,6 +2188,9 @@ ${PYSITELIB}/sympy/printing/tests/test_codeprinter.pyo
${PYSITELIB}/sympy/printing/tests/test_conventions.py
${PYSITELIB}/sympy/printing/tests/test_conventions.pyc
${PYSITELIB}/sympy/printing/tests/test_conventions.pyo
+${PYSITELIB}/sympy/printing/tests/test_dot.py
+${PYSITELIB}/sympy/printing/tests/test_dot.pyc
+${PYSITELIB}/sympy/printing/tests/test_dot.pyo
${PYSITELIB}/sympy/printing/tests/test_fcode.py
${PYSITELIB}/sympy/printing/tests/test_fcode.pyc
${PYSITELIB}/sympy/printing/tests/test_fcode.pyo
@@ -1848,6 +2224,12 @@ ${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/tests/test_theanocode.py
+${PYSITELIB}/sympy/printing/tests/test_theanocode.pyc
+${PYSITELIB}/sympy/printing/tests/test_theanocode.pyo
+${PYSITELIB}/sympy/printing/theanocode.py
+${PYSITELIB}/sympy/printing/theanocode.pyc
+${PYSITELIB}/sympy/printing/theanocode.pyo
${PYSITELIB}/sympy/printing/tree.py
${PYSITELIB}/sympy/printing/tree.pyc
${PYSITELIB}/sympy/printing/tree.pyo
@@ -1911,6 +2293,9 @@ ${PYSITELIB}/sympy/sets/__init__.pyo
${PYSITELIB}/sympy/sets/fancysets.py
${PYSITELIB}/sympy/sets/fancysets.pyc
${PYSITELIB}/sympy/sets/fancysets.pyo
+${PYSITELIB}/sympy/sets/tests/__init__.py
+${PYSITELIB}/sympy/sets/tests/__init__.pyc
+${PYSITELIB}/sympy/sets/tests/__init__.pyo
${PYSITELIB}/sympy/sets/tests/test_fancysets.py
${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc
${PYSITELIB}/sympy/sets/tests/test_fancysets.pyo
@@ -1926,6 +2311,9 @@ ${PYSITELIB}/sympy/simplify/cse_opts.pyo
${PYSITELIB}/sympy/simplify/epathtools.py
${PYSITELIB}/sympy/simplify/epathtools.pyc
${PYSITELIB}/sympy/simplify/epathtools.pyo
+${PYSITELIB}/sympy/simplify/fu.py
+${PYSITELIB}/sympy/simplify/fu.pyc
+${PYSITELIB}/sympy/simplify/fu.pyo
${PYSITELIB}/sympy/simplify/hyperexpand.py
${PYSITELIB}/sympy/simplify/hyperexpand.pyc
${PYSITELIB}/sympy/simplify/hyperexpand.pyo
@@ -1947,6 +2335,12 @@ ${PYSITELIB}/sympy/simplify/tests/test_cse.pyo
${PYSITELIB}/sympy/simplify/tests/test_epathtools.py
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyc
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyo
+${PYSITELIB}/sympy/simplify/tests/test_fu.py
+${PYSITELIB}/sympy/simplify/tests/test_fu.pyc
+${PYSITELIB}/sympy/simplify/tests/test_fu.pyo
+${PYSITELIB}/sympy/simplify/tests/test_function.py
+${PYSITELIB}/sympy/simplify/tests/test_function.pyc
+${PYSITELIB}/sympy/simplify/tests/test_function.pyo
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.py
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.pyc
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.pyo
@@ -1968,6 +2362,15 @@ ${PYSITELIB}/sympy/simplify/traversaltools.pyo
${PYSITELIB}/sympy/solvers/__init__.py
${PYSITELIB}/sympy/solvers/__init__.pyc
${PYSITELIB}/sympy/solvers/__init__.pyo
+${PYSITELIB}/sympy/solvers/bivariate.py
+${PYSITELIB}/sympy/solvers/bivariate.pyc
+${PYSITELIB}/sympy/solvers/bivariate.pyo
+${PYSITELIB}/sympy/solvers/deutils.py
+${PYSITELIB}/sympy/solvers/deutils.pyc
+${PYSITELIB}/sympy/solvers/deutils.pyo
+${PYSITELIB}/sympy/solvers/diophantine.py
+${PYSITELIB}/sympy/solvers/diophantine.pyc
+${PYSITELIB}/sympy/solvers/diophantine.pyo
${PYSITELIB}/sympy/solvers/inequalities.py
${PYSITELIB}/sympy/solvers/inequalities.pyc
${PYSITELIB}/sympy/solvers/inequalities.pyo
@@ -1992,6 +2395,9 @@ ${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
+${PYSITELIB}/sympy/solvers/tests/test_diophantine.py
+${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyc
+${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyo
${PYSITELIB}/sympy/solvers/tests/test_inequalities.py
${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyc
${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyo
@@ -2034,6 +2440,12 @@ ${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/drv.py
+${PYSITELIB}/sympy/stats/drv.pyc
+${PYSITELIB}/sympy/stats/drv.pyo
+${PYSITELIB}/sympy/stats/drv_types.py
+${PYSITELIB}/sympy/stats/drv_types.pyc
+${PYSITELIB}/sympy/stats/drv_types.pyo
${PYSITELIB}/sympy/stats/frv.py
${PYSITELIB}/sympy/stats/frv.pyc
${PYSITELIB}/sympy/stats/frv.pyo
@@ -2046,15 +2458,90 @@ ${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/__init__.py
+${PYSITELIB}/sympy/stats/tests/__init__.pyc
+${PYSITELIB}/sympy/stats/tests/__init__.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_discrete_rv.py
+${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyc
+${PYSITELIB}/sympy/stats/tests/test_discrete_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_mix.py
+${PYSITELIB}/sympy/stats/tests/test_mix.pyc
+${PYSITELIB}/sympy/stats/tests/test_mix.pyo
${PYSITELIB}/sympy/stats/tests/test_rv.py
${PYSITELIB}/sympy/stats/tests/test_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_rv.pyo
+${PYSITELIB}/sympy/strategies/__init__.py
+${PYSITELIB}/sympy/strategies/__init__.pyc
+${PYSITELIB}/sympy/strategies/__init__.pyo
+${PYSITELIB}/sympy/strategies/branch/__init__.py
+${PYSITELIB}/sympy/strategies/branch/__init__.pyc
+${PYSITELIB}/sympy/strategies/branch/__init__.pyo
+${PYSITELIB}/sympy/strategies/branch/core.py
+${PYSITELIB}/sympy/strategies/branch/core.pyc
+${PYSITELIB}/sympy/strategies/branch/core.pyo
+${PYSITELIB}/sympy/strategies/branch/tests/__init__.py
+${PYSITELIB}/sympy/strategies/branch/tests/__init__.pyc
+${PYSITELIB}/sympy/strategies/branch/tests/__init__.pyo
+${PYSITELIB}/sympy/strategies/branch/tests/test_core.py
+${PYSITELIB}/sympy/strategies/branch/tests/test_core.pyc
+${PYSITELIB}/sympy/strategies/branch/tests/test_core.pyo
+${PYSITELIB}/sympy/strategies/branch/tests/test_tools.py
+${PYSITELIB}/sympy/strategies/branch/tests/test_tools.pyc
+${PYSITELIB}/sympy/strategies/branch/tests/test_tools.pyo
+${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.py
+${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.pyc
+${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.pyo
+${PYSITELIB}/sympy/strategies/branch/tools.py
+${PYSITELIB}/sympy/strategies/branch/tools.pyc
+${PYSITELIB}/sympy/strategies/branch/tools.pyo
+${PYSITELIB}/sympy/strategies/branch/traverse.py
+${PYSITELIB}/sympy/strategies/branch/traverse.pyc
+${PYSITELIB}/sympy/strategies/branch/traverse.pyo
+${PYSITELIB}/sympy/strategies/core.py
+${PYSITELIB}/sympy/strategies/core.pyc
+${PYSITELIB}/sympy/strategies/core.pyo
+${PYSITELIB}/sympy/strategies/rl.py
+${PYSITELIB}/sympy/strategies/rl.pyc
+${PYSITELIB}/sympy/strategies/rl.pyo
+${PYSITELIB}/sympy/strategies/tests/__init__.py
+${PYSITELIB}/sympy/strategies/tests/__init__.pyc
+${PYSITELIB}/sympy/strategies/tests/__init__.pyo
+${PYSITELIB}/sympy/strategies/tests/test_core.py
+${PYSITELIB}/sympy/strategies/tests/test_core.pyc
+${PYSITELIB}/sympy/strategies/tests/test_core.pyo
+${PYSITELIB}/sympy/strategies/tests/test_rl.py
+${PYSITELIB}/sympy/strategies/tests/test_rl.pyc
+${PYSITELIB}/sympy/strategies/tests/test_rl.pyo
+${PYSITELIB}/sympy/strategies/tests/test_strat.py
+${PYSITELIB}/sympy/strategies/tests/test_strat.pyc
+${PYSITELIB}/sympy/strategies/tests/test_strat.pyo
+${PYSITELIB}/sympy/strategies/tests/test_tools.py
+${PYSITELIB}/sympy/strategies/tests/test_tools.pyc
+${PYSITELIB}/sympy/strategies/tests/test_tools.pyo
+${PYSITELIB}/sympy/strategies/tests/test_traverse.py
+${PYSITELIB}/sympy/strategies/tests/test_traverse.pyc
+${PYSITELIB}/sympy/strategies/tests/test_traverse.pyo
+${PYSITELIB}/sympy/strategies/tests/test_tree.py
+${PYSITELIB}/sympy/strategies/tests/test_tree.pyc
+${PYSITELIB}/sympy/strategies/tests/test_tree.pyo
+${PYSITELIB}/sympy/strategies/tools.py
+${PYSITELIB}/sympy/strategies/tools.pyc
+${PYSITELIB}/sympy/strategies/tools.pyo
+${PYSITELIB}/sympy/strategies/traverse.py
+${PYSITELIB}/sympy/strategies/traverse.pyc
+${PYSITELIB}/sympy/strategies/traverse.pyo
+${PYSITELIB}/sympy/strategies/tree.py
+${PYSITELIB}/sympy/strategies/tree.pyc
+${PYSITELIB}/sympy/strategies/tree.pyo
+${PYSITELIB}/sympy/strategies/util.py
+${PYSITELIB}/sympy/strategies/util.pyc
+${PYSITELIB}/sympy/strategies/util.pyo
${PYSITELIB}/sympy/tensor/__init__.py
${PYSITELIB}/sympy/tensor/__init__.pyc
${PYSITELIB}/sympy/tensor/__init__.pyo
@@ -2064,6 +2551,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/tensor.py
+${PYSITELIB}/sympy/tensor/tensor.pyc
+${PYSITELIB}/sympy/tensor/tensor.pyo
${PYSITELIB}/sympy/tensor/tests/__init__.py
${PYSITELIB}/sympy/tensor/tests/__init__.pyc
${PYSITELIB}/sympy/tensor/tests/__init__.pyo
@@ -2073,6 +2563,33 @@ ${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyo
${PYSITELIB}/sympy/tensor/tests/test_indexed.py
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyc
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyo
+${PYSITELIB}/sympy/tensor/tests/test_tensor.py
+${PYSITELIB}/sympy/tensor/tests/test_tensor.pyc
+${PYSITELIB}/sympy/tensor/tests/test_tensor.pyo
+${PYSITELIB}/sympy/unify/__init__.py
+${PYSITELIB}/sympy/unify/__init__.pyc
+${PYSITELIB}/sympy/unify/__init__.pyo
+${PYSITELIB}/sympy/unify/core.py
+${PYSITELIB}/sympy/unify/core.pyc
+${PYSITELIB}/sympy/unify/core.pyo
+${PYSITELIB}/sympy/unify/rewrite.py
+${PYSITELIB}/sympy/unify/rewrite.pyc
+${PYSITELIB}/sympy/unify/rewrite.pyo
+${PYSITELIB}/sympy/unify/tests/__init__.py
+${PYSITELIB}/sympy/unify/tests/__init__.pyc
+${PYSITELIB}/sympy/unify/tests/__init__.pyo
+${PYSITELIB}/sympy/unify/tests/test_rewrite.py
+${PYSITELIB}/sympy/unify/tests/test_rewrite.pyc
+${PYSITELIB}/sympy/unify/tests/test_rewrite.pyo
+${PYSITELIB}/sympy/unify/tests/test_sympy.py
+${PYSITELIB}/sympy/unify/tests/test_sympy.pyc
+${PYSITELIB}/sympy/unify/tests/test_sympy.pyo
+${PYSITELIB}/sympy/unify/tests/test_unify.py
+${PYSITELIB}/sympy/unify/tests/test_unify.pyc
+${PYSITELIB}/sympy/unify/tests/test_unify.pyo
+${PYSITELIB}/sympy/unify/usympy.py
+${PYSITELIB}/sympy/unify/usympy.pyc
+${PYSITELIB}/sympy/unify/usympy.pyo
${PYSITELIB}/sympy/utilities/__init__.py
${PYSITELIB}/sympy/utilities/__init__.pyc
${PYSITELIB}/sympy/utilities/__init__.pyo
@@ -2088,9 +2605,6 @@ ${PYSITELIB}/sympy/utilities/codegen.pyo
${PYSITELIB}/sympy/utilities/compilef.py
${PYSITELIB}/sympy/utilities/compilef.pyc
${PYSITELIB}/sympy/utilities/compilef.pyo
-${PYSITELIB}/sympy/utilities/cythonutils.py
-${PYSITELIB}/sympy/utilities/cythonutils.pyc
-${PYSITELIB}/sympy/utilities/cythonutils.pyo
${PYSITELIB}/sympy/utilities/decorator.py
${PYSITELIB}/sympy/utilities/decorator.pyc
${PYSITELIB}/sympy/utilities/decorator.pyo
@@ -2103,6 +2617,9 @@ ${PYSITELIB}/sympy/utilities/iterables.pyo
${PYSITELIB}/sympy/utilities/lambdify.py
${PYSITELIB}/sympy/utilities/lambdify.pyc
${PYSITELIB}/sympy/utilities/lambdify.pyo
+${PYSITELIB}/sympy/utilities/magic.py
+${PYSITELIB}/sympy/utilities/magic.pyc
+${PYSITELIB}/sympy/utilities/magic.pyo
${PYSITELIB}/sympy/utilities/mathml/__init__.py
${PYSITELIB}/sympy/utilities/mathml/__init__.pyc
${PYSITELIB}/sympy/utilities/mathml/__init__.pyo
@@ -2133,6 +2650,9 @@ ${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/diagnose_imports.py
+${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyc
+${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyo
${PYSITELIB}/sympy/utilities/tests/test_autowrap.py
${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc
${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyo
@@ -2151,6 +2671,9 @@ ${PYSITELIB}/sympy/utilities/tests/test_iterables.pyo
${PYSITELIB}/sympy/utilities/tests/test_lambdify.py
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyc
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyo
+${PYSITELIB}/sympy/utilities/tests/test_module_imports.py
+${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyc
+${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyo
${PYSITELIB}/sympy/utilities/tests/test_pickling.py
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyc
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyo
@@ -2160,6 +2683,9 @@ ${PYSITELIB}/sympy/utilities/tests/test_pytest.pyo
${PYSITELIB}/sympy/utilities/tests/test_source.py
${PYSITELIB}/sympy/utilities/tests/test_source.pyc
${PYSITELIB}/sympy/utilities/tests/test_source.pyo
+${PYSITELIB}/sympy/utilities/tests/test_timeutils.py
+${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyc
+${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyo
${PYSITELIB}/sympy/utilities/timeutils.py
${PYSITELIB}/sympy/utilities/timeutils.pyc
${PYSITELIB}/sympy/utilities/timeutils.pyo
diff --git a/math/py-sympy/distinfo b/math/py-sympy/distinfo
index b8ab47bc43d..cafc1457b1a 100644
--- a/math/py-sympy/distinfo
+++ b/math/py-sympy/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.7 2012/12/02 12:33:23 wen Exp $
+$NetBSD: distinfo,v 1.8 2014/01/21 08:38:04 wiz Exp $
-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
+SHA1 (sympy-0.7.4.1.tar.gz) = 073b2ddf7ee8bc2b9e3687660d59e8848d6fce6c
+RMD160 (sympy-0.7.4.1.tar.gz) = 087661c59a8f75bee74241ff952dc3ca5f9a84e1
+Size (sympy-0.7.4.1.tar.gz) = 6824862 bytes