Sun Sep 20 14:30:01 2020 UTC ()
py-sympy: Update to 1.6.2

Changelog:
1.6.2
Changes

    matrices
        Fixed a bug that made matrix operations fail in a multithreaded application. (#19812 by @pd0wm)

    polys
        Using factor with the extension argument no longer hangs in some cases. (#19847 by @jksuom and @rainwoodman)

    printing
        Calling preview with viewer="file" no longer looks for a file executable (a regression in 1.6.0) (#19904 by @eric-wieser)

        The deprecation of calling preview with viewer="StringIO" is now expired instead of forgotten (a regression in 1.6.0) (#19904 by @eric-wieser)

    other
        intersphinx links to :mod:`sympy` no longer point to the documentation for Immutable Matrices (#19881 by @eric-wieser and @oscarbenjamin)

1.6.1
Changes

    functions
        Fixes AttributeError in limit evaluation (#19604 by @sachin-4099)

    matrices
        Disabled default matrix intermediate product simplification and changed it to enable via context manager. (#19612 by @oscarbenjamin and @Pristine-Cat)

    simplify
        Fixes a bug in collect when collected symbols appear in the factorized expression. (#19601 by @mloubout and @oscarbenjamin)

    solvers
        Fixed exception handling in solveset's secondary trigonometric solver. (#19602 by @gschintgen and @oscarbenjamin)

    other
        SymPy is importable again in Python 3.5.1 (imports of typing.Type are removed) (#19620 by @oscarbenjamin)

        Fix the sphinx docs build for sphinx 3.1.1 (#19598 by @oscarbenjamin)

1.6

Backwards compatibility breaks and deprecations

Please manually add any backwards compatibility breaks or deprecations here, in addition to the automatic listing below.

    assumptions

        Removed deprecated Q.bounded (use Q.finite instead). Deprecated since version 1.0 (issue: #9425) (#18390 by @Smit-create)

        Removed deprecated Q.infinitesimal (use Q.zero instead). Deprecated since version 1.0 (issue: #9675) (#18390 by @Smit-create)

        Removed deprecated Q.infinity (use Q.infinte instead). Deprecated since version 1.0 (issue: #9426) (#18390 by @Smit-create)

    calculus
        Deprecated evaluate argument in differentiate_finite for making non-conservative finite differences. (#17881 by @vezeli)

    combinatorics
        Using Permutation.print_cyclic will raise deprecation warnings (#18033 by @oscarbenjamin, @souravgl0, and @sylee957)

    core

        Deprecated sympify automatically converting custom objects with __str__ or __repr__ implemented. (#19006 by @sylee957)

        BREAKING CHANGE: Basic.has no longer accepts strings as input. For example in SymPy 1.5 you could do Symbol('x').has('x') and the string 'x' passed to has would be sympified to a symbol so that the result would be True. In SymPy 1.6 this will raise an error because the string 'x' can not be sympified using strict sympification. (#19251 by @oscarbenjamin)

        Remove deprecated bounded, unbounded and infinitesimal. Deprecated since version 0.7.6 (issue #8071) (#18503 by @Smit-create)

        Relational is no longer a subclass of Expr and does not produce nonsensical results in arithmetic operations. This affects all Relational subclasses (Eq, Ne, Gt, Ge, Lt, Le). It is no longer possible to call meaningless Expr methods like as_coeff_Mul on Relational instances. (#18053 by @oscarbenjamin)

        Expr now uses cooperative dispatch for binary operations so it is possible for non-Expr Basic subclasses to override the behaviour of e.g. a + b where one of a or b is an instance of Expr. This also means that any non-Expr Basic subclasses can not depend on Expr.__add__ to create Add(a, b): if a class is not a subclass of Expr and wants to define binary operations with Expr it must do so explicitly in its own __add__ method. For classes depending on this this is not a backward compatible change. (#18116 by @oscarbenjamin)

    matrices
        The Matrix.is_zero property has been renamed to Matrix.is_zero_matrix.
        Matrix.is_zero is now always False. This is because in general is_zero means the number zero so a matrix can never be zero.

    To get the old behavior of M.is_zero in both old and new versions of sympy use from sympy.core.logic import fuzzy_and; fuzzy_and(m.is_zero for m in M). (#18464 by @sylee957)

    polys

        BREAKING CHANGE: Poly and PurePoly now subclass Basic rather than Expr. This means that they no longer have various Expr methods such as expand that do not make sense for Poly. Use as_expr to convert the Poly to an Expr before using Expr methods. (#18613 by @oscarbenjamin)

        BREAKING CHANGE: Poly instances with different domains now always compare unequal with p1 == p2 and p1.eq(p2). Previously Poly instances that had the same expression and generators would compare equal even if the domains were different. In some cases it might be necessary to specify the domain when comparing e.g. if p == Poly(x, x, domain='QQ'). (#18613 by @oscarbenjamin)

        DEPRECATION: Mixing Poly with non-polynomial Expr in binary operations is now deprecated. For example Poly(x, x) * exp(x) will give a deprecation warning but still return the Expr x*exp(x) as before. If the Expr can be converted to Poly (e.g. Poly(x, x) * x) then a Poly will be returned. To get an Expr always use the as_expr method first to convert the Poly to an Expr. To get a Poly always use as_poly to convert the Expr to a Poly. (#18613 by @oscarbenjamin)

        DEPRECATION: Passing Poly as the integrand to the integrate function or Integral class is now deprecated. Use the integrate method instead e.g. Poly(x, x).integrate(x) (#18613 by @oscarbenjamin)

    printing

        Removed deprecated Ccodeprinter (Use C89Printer or C99Printer instead). Deprecated since version 1.1 (Issue : #12220). (#18392 by @risubaba)

        Removed deprecated file viewer option in preview. Deprecated since version 0.7.3(Issue: #7018) (#18392 by @risubaba)

        Removed deprecated StringIO viewer option in preview. Deprecated since version 0.7.2(Issue: #7083) (#18392 by @risubaba)

    sets
        Set now uses cooperative dispatch for binary operations so it is possible for non-Set Basic subclasses to override the behaviour of e.g. a + b where one of a or b is an instance of Set. This also means that any non-Set Basic subclasses can not depend on e.g. Set.__add__ to create Union(a, b): if a class is not a subclass of Set and wants to define binary operations with Set it must do so explicitly in its own __add__ method. For classes depending on this this is not a backward compatible change. (#18116 by @oscarbenjamin)

    other
        Submodule names are no longer imported with from sympy import *. They can still be imported directly like from sympy import core or accessed like sympy.core, or like sys.modules['sympy.simplify'] for modules that share names with SymPy functions. (#18245 by @oscarbenjamve the T/F assumptions of a symbol or expression (#19155 by @smichr)

        common_assumptions returns the T/F assumptions in common amongst the given expressions (#19155 by @smichr)

        Added a refine_matrixelement function (#18681 by @Saanidhyavaeprecated Q.bounded (use Q.finite instead). Deprecated since version 1.0 (issue: #9425) (#18390 by @Smit-create)

        Removed deprecated Q.infinitesimal (use Q.zero instead). Deprecated since version 1.0 (issue: #9675) (#18390 by @Smit-create)

      ask(Q.antihermitian()) which earlier generated incorrect results. (#18303 by @czgdp1807)

        Improved code in ask function using constructs from cnf module. (#18204 by @JSS95 and @mcpl-sympy)

        Fixed bug in ask function: In case of user-defineus_domain now finds singularities in nested fractions (#19047 by @smichr and @ThomasHickman)

        singularities has been upgraded to handle more than rational functions (#19047 by @smichr and @ThomasHickman)

        fixes operations of AccumBounds (#18803 by @Ryand1234)

        periodicity of exponential functions with a non-zero phase component is now calculated. (#18746 by @mohitacecode)

        Correct the solution of differentiate_finite for expressions that contain embedded derivatives. (#17881 by @vezeli)

        Deprecated evaluate argument in differentiate_finite for making non-conservative finite differences. (#17881 by @vezeli)

        Updated docstrings of maximum, minimum, stationary_points and AccumBounds.intersection (#18581 by @mijo2)

        Fixes Recursion Error in AccumulationBounds.__pow__ by adding a check on denominator (#18450 by @Smit-create)

    combinatorics

        Permutation * PermutationGroup and PermutationGroup * Permutation return Coset. (#19139 by @mohitacecode)

        Added Coset Class. (#19077 by @mohitacecode and @sylee957)

        Added SymmetricPermutationGroup Class. (#19077 by @mohitacecode and @sylee957)

        Added schur number utilities in combinatorics (#18667 by @mijo2 and @slacker404)

        Raise exception with wrong size in Permutation. (#18587 by @Smit-create)

        Added Permutation.conjugacy_class and Permutation.conjugacy_classes for computing conjugacy classes in permutation groups. (#18354 by @lucjon and @sachin-4099)

        Fixed Permutation applying for negative integers. (#18032 by @mrocklin and @sylee957)

        Added Permutation.apply to use permutation as a symbolic function. (#18032 by @mrocklin and @sylee957)

        Using Permutation.print_cyclic will raise deprecation warnings (#18033 by @oscarbenjamin, @souravgl0, and @sylee957)
        Cycle class is no longer mutable and can be regarded as a sparse representation of a permutation (#17973 by @sachin-4099)

    core

        BREAKING CHANGE: Basic.has no longer accepts strings as input. For example in SymPy 1.5 you could do Symbol('x').has('x') and the string 'x' passed to has would be sympified to a symbol so that the result would be True. In SymPy 1.6 this will raise an error because the string 'x' can not be sympified using strict sympification. (#19251 by @oscarbenjamin)

        Mul.is_integer no longer rebuilds arguments into Mul (#19182 by @iammosespaulr)

        Mul with odd numerator and even denominator is recognized as rational but not integer (#19155 by @smichr)
        Deprecated sympify automatically converting custom objects with __str__ or __repr__ implemented. (#19006 by @sylee957)
        when strict=True, as_int will not convert True to 1 (#19054 by @smichr)
        Support mpmath.matrix in sympify. (#18911 by @smichr and @sylee957)
        Adds simplification to Pow._eval_nseries resolving incorrect limit evaluation (#18962 by @sachin-4099)
        doit(deep=False) now evaluates Add and Mul. (#18829 by @JSS95 and @mcpl-sympy)

        Reduces sensitivity of computation of order terms in Pow._eval_nseries (#18785 by @sachin-4099)

        Pow.is_zero is fixed for some cases involving infinite (or possibly infinite) expressions. (#18728 by @oscarbenjamin)

        Now finite and infinite are logical opposites in the old assumptions system so e.g. a Symbol declared with finite=False will have infinite=True. (#18726 by @oscarbenjamin)

        sympify no longer converts numpy arrays with size to scalars (#18651 by @mijo2 and @NeilGirdhar)

        __getnewargs__() added to Zero, One, NegativeOne, Half. (#18675 by @mohitacecode)

        simplification of powers with numerical products in the base is improved (#18650 by @sachin-4099)

        sqrt(x).is_negative is False when x is real (#18597 by @Smit-create)

        Add,_eval_as_leading_term() has been fixed (#18340 by @sachin-4099)

        Updated the definition of atoms method of class Basic (#18532 by @mijo2)

        basic - sorting in subs is improved so unsorted arguments will prefer replacing more complicated patterns first (e.g. the second derivative before the first derivative). (#18043 by @Psycho-Pirate)

        Remove deprecated bounded, unbounded and infinitesimal. Deprecated since version 0.7.6 (issue #8071) (#18503 by @Smit-create)

        Added check for AccumBounds. (#18478 by @smichr and @Smit-create)

        Adding gmpy in integer_nthroot ( It works only for n < 2**63) (#18380 by @Smit-create)

        Added new test case for relational (#18416 by @mijo2)

        Pow._eval_nseries fixed to accept all real exponents. (#18406 by @Smit-create)

        integer_ntroot and igcd now use gmpy when it is installed (#18276 by @Smit-create)

        Changed some partial derivatives like diff(f(g(x), h(x)), x) not to have dummy symbols. (#18326 by @sachin-4099)

        subs now works correctly with partial derivatives. (#18326 by @sachin-4099)

        Subclass of Function can inherit its nargs attribute to its subclasses. (#18258 by @JSS95 and @mcpl-sympy)

        Added try-except block in sympy/core/relational.py to handle NotImplementedError and return ConditionSet (#18211 by @Smit-create)

        Renamed core/evaluate to core/parameters (#18198 by @JSS95, @mcpl-sympy, and @oscarbenjamin)

        Added global_parameters, which is a thread-local storage for global parameters such as evaluate, distribute, etc. (#18198 by @JSS95, @mcpl-sympy, and @oscarbenjamin)

        Relational is no longer a subclass of Expr and does not produce nonsensical results in arithmetic operations. This affects all Relational subclasses (Eq, Ne, Gt, Ge, Lt, Le). It is no longer possible to call meaningless Expr methods like as_coeff_Mul on Relational instances. (#18053 by @oscarbenjamin)

        Expr now uses cooperative dispatch for binary operations so it is possible for non-Expr Basic subclasses to override the behaviour of e.g. a + b where one of a or b is an instance of Expr. This also means that any non-Expr Basic subclasses can not depend on Expr.__add__ to create Add(a, b): if a class is not a subclass of Expr and wants to define binary operations with Expr it must do so explicitly in its own __add__ method. For classes depending on this this is not a backward compatible change. (#18116 by @oscarbenjamin)

        Added global_evaluate[0] condition in add, sub, mul, div functions in Infinity class. (#18109 by @namannimmo10)

        Moved .as_poly() from Basic to Expr. (#18094 by @dhruvmendiratta6)

        Fixed a bug in Factors().as_expr() that led to simplifications that are not generally valid for complex numbers. (Exponents were always multiplied in power-of-a-power situations.) (#18087 by @gschintgen)
        Fix a regression in 1.5 that allowed expressions to compare equal to strings, and caused == to call str() on the other object. (#18057 by @asmeurer)

    functions

        Adjoint of exp and transpose of exp now work as expected. (#19151 by @akirakyle)

        Adds substitution to _eval_nseries() function of Abs() class resolving incorrect limit evaluations (#19037 by @sachin-4099)

        expand log term into its prime factors if the factor flag is True. (#18927 by @sbt4104)

        Evaluate nested floor/ceiling. (#18903 by @sbt4104)

        Update expand function for binomials. (#18802 by @sbt4104)

        periodicity of trigonometric functions with a non-zero phase component is now calculated. (#18746 by @mohitacecode)

        __getnewargs__() and args() added to IdentityFunction. (#18675 by @mohitacecode)

        Added _eval_nseries() functionality to hyper (#18630 by @dhruvmendiratta6)
        Fix number of terms in exp._eval_nseries. (#18598 by @mohitacecode)

        Fixes TypeError while using simplify (#18640 by @Smit-create)

        Added proportional tolerance for falling factorial test (#18456 by @mijo2)

        polygamma(n, 1/2) with n a positive integer is automatically evaluated (#18451 by @ethankward)

        floor and ceiling with float arguments now return Integers (#18424 by @mohitacecode)

        Sympified output numbers for factorial and binomial used with Mod. (#18339 by @namannimmo10)

        Maximum recursion depth is no longer exceeded when subfactorial is called on large numbers (#17983 by @sachin-4099)
        Copy edited the Special submodule to reflect the style guide for Google Season of Docs. (#17844 by @lglattly)

    geometry

        Line.bisectors will return the two perpendicular lines, bisecting the angles at the intersection of two linear entities and laying in the same plane as them (#19094 by @Jaime02 and @smichr)

        Added explicit optional parameters to Polygon and convex_hull (#15757 by @oscargus)

        Added bisectors method for Polygon class. (#18335 by @namannimmo10)

        Add __call__ method in Class Curve. (#18250 by @namannimmo10)

        Point.coordinates was added as a meaningful alias for Point.args (#18213 by @Jaime02)

    holonomic
        A cache mismatch error was fixed. (#19248 by @iammosespaulr and @smichr)

    integrals

        Handling Float Integrals (#18434 by @Smit-create)

        Added integration over summation (#18491 by @mijo2)

        Added extra step to evaluate integral if heurisch() returns None in heurisch_wrapper() (#18153 by @risubaba)

        Catch ValueError from meijerg() in _inverse_mellin_transform(). (#18141 by @Smit-create)

    logic

        boolalg (#18912 by @smichr)

        to_cnf/to_dnf (when simplify=True) require force=True` if there are more than 8 variables (#18912 by @smichr)

        simplify_logic recognizes trivial simplified cases (#18912 by @smichr)

        is_literal can treat Not as literal or not by using the literal_Not flag (#18912 by @smichr)

        Opposing Relationals are now detected correctly in nested Ands allowing evaluation to False in more cases. (#18811 by @oscarbenjamin)

        Added a new normal form - ANFform. Function ANFform converts a list of truth values to an expression in Algebraic Normal Form (ANF). (#13686 by @KonstantinTogoi)

        Added a new method BooleanFunction.to_anf that converts an expression to ANF by equivalent transformations. (#13686 by @KonstantinTogoi)

        Added a new function is_anf that checks if an expression is ANF. (#13686 by @KonstantinTogoi)

        Added a new function to_anf that converts an expression to ANF if it is not ANF. (#13686 by @KonstantinTogoi)

        Added a new function distribute_xor_over_and. Given a sentence s consisting of conjunction and exclusive disjunctions of literals, it returns an equivalent exclusive disjunction. (#13686 by @KonstantinTogoi)

        Added a new function bool_minterm that returns the k-th minterm of a fixed ordered set of binary variables. (#13686 by @KonstantinTogoi)

        Added a new function bool_maxterm that returns the k-th maxterm of a fixed ordered set of binary variables. (#13686 by @KonstantinTogoi)

        Added a new function bool_monomial that returns the k-th monomial of a fixed ordered set of binary variables. (#13686 by @KonstantinTogoi)

    matrices

        Fixed matrix creation from the list containg numpy ndarray. (e.g. Matrix([np.array([1, 2]), np.array([1, 2])])) (#19229 by @sylee957)

        Added is_strongly_diagonally_dominant and is_weakly_diagonally_dominant properties for Matrix. (#19205 by @sylee957)
        Powers of non-square matrices now always raise an error, even when constructed using MatPow(...). (#19104 by @jlherren)

        ZeroMatrix will not be logically False. (#19110 by @sbt4104)

        Added connected_components and connected_components_decomposition for matrix which decomposes a matrix into a block diagonal form. (#19045 by @sylee957)

        Added todok function to find dictionary of keys format from any dense or sparse matrices. (#19045 by @sylee957)

        Added BlockDiagMatrix.get_diag_blocks to provide an user API to get diagonal blocks from the matrix. (#19045 by @sylee957)

        Fixed bug of mpmath.matrix transforming into wrong shape if used to create Matrix. (#18911 by @smichr and @sylee957)

        Improved eigenvals and eigenvects for floating point matrices using mpmath. (#18911 by @smichr and @sylee957)

        Some expressions involving OneMatrix are now simplified. (#19009 by @jlherren)

        Indexing BlockMatrix now more often produces correct results and remains unevaluated if a correct simplification is not possible. (#19007 by @jlherren)

        Added a function that rotates matrices by 90 degrees (#18953 by @iammosespaulr and @sylee957)

        sparsetools - _doktocsr now returns a MutableSparseMatrix (#18940 by @smichr)

        Added Golub Kahan Bidiagonalization with Householder Reflections (#18797 by @sudoWin)

        Added test_solvers.py file which contains all the solvers-related tests. (#18793 by @guptabhaskar)

        Added evaluate option to MatAdd and MatMul (#18765 by @JSS95 and @mcpl-sympy)

        non-square matrices now raise NonSquareMatrixError if inversion is attempted (#18647 by @abhinav28071999)

        Added test_subspaces.py file which contain all the reductions-related tests. (#18713 by @mohitacecode)

        Added test_reductions.py file which contain all the reductions-related tests. (#18705 by @mohitacecode)

        Added test_eigen.py file which contain all the eigen-related tests. (#18690 by @mohitacecode)

        Added test_decomposition.py file which contain all the decomposition-related tests. (#18685 by @mohitacecode)

        Added test_determinant.py file which contain all the determinant-related tests. (#18668 by @mohitacecode)

        Faster Matrix Inverse using Block Matrix (#18608 by @abhinav28071999)

        Faster Matrix exponentiation using Cayley Hamilton Theorem (#18595 by @abhinav28071999)

        Fixed BlockDiagMatrix(A).blocks giving a non-block matrix. (#18621 by @abhinav28071999)

        Added dotprodsimp keyword to MatrixArithmetic.pow (#18600 by @Pristine-Cat)

        Implemented General Matrix Analytic functions (#18565 by @abhinav28071999)

        Enabled intermediate matrix product simplification to control expression blowup during certain matrix operations. (#18572 by @Pristine-Cat) (#18147 by @Pristine-Cat) (#18049 by @Pristine-Cat)

        Added environment variable check SYMPY_DOTPRODSIMP=0 to turn off the new dotprodsimp simplification in case the structure of the new results breaks user code. Should be removed after next live release. (#18572 by @Pristine-Cat)

        Pulled out and cleaned up many matrix function implementations from matrices.py into individual matrix source files determinant.py, reductions.py, subspaces.py, eigen.py, decompositions.py, solvers.py and inverse.py. (#18564 by @Pristine-Cat) (#18519 by @Pristine-Cat) (#18425 by @Pristine-Cat) (#18420 by @Pristine-Cat) (#18342 by @Pristine-Cat)

        Immutable matrices return themselves on call to as_immutable(). (#18441 by @Pristine-Cat)

        Fixed wrapper for NumPy matrices so SymPy iteration and indexing works correctly. (#18160 by @Pristine-Cat)

        Not backwards compatible: The Matrix.is_zero property has been renamed to Matrix.is_zero_matrix. Matrix.is_zero is now always False. This is because in general is_zero means the number zero so a matrix can never be zero. To get the old behavior of M.is_zero in both old and new versions of sympy use from sympy.core.logic import fuzzy_and; fuzzy_and(m.is_zero for m in M). (#18464 by @sylee957)

        Added PermutationMatrix and MatrixPermute for matrix permutations. (#18032 by @mrocklin and @sylee957)

        Fixed FunctionMatrix.replace raising TypeError: 'property' object is not iterable when the function is not a Lambda instance. (#17998 by @sylee957)

        FunctionMatrix and ElementwiseApplyFunction will always wrap the function inside Lambda. (#17998 by @sylee957)

        Cleaned up unnecessary slowdown for MatMul.doit when it contains explicit matrices. (#17872 by @sylee957)

        Fixed MatPow(Inverse(A), 3) and Inverse(MatPow(A, 3)) canonicalized into different objects. (#17872 by @sylee957)
        Improved inversion of block matrices by selecting an appropriate formula. (#19215 by @jlherren)

    ntheory

        the number of digits (like bit length) can now be specified for digits (#18961 by @Arpan612 and @smichr)

        Corrects the condition for "Extra strong" Lucas pseudoprime (#18946 by @Arpan612 and @sylee957)

        count_digits works only with numbers (not strings) (#18807 by @smichr)

        digits is now located in digits instead of factor_ (#18807 by @smichr)

        implemented elliptic curve (#18682 by @abhinav28071999 and @shikil)

        added new ntheory module digits.py containing methods related to arithmetic properties of integers (currently, frequency counters for digits of integers, palindromic numbers) (#18659 by @sr-murthy)

        Made divisor_sigma() symbolically recognize the case: divisor_sigma(a**j*b**k) (#18688 by @sachin-4099)

        Added multiplicty_in_factorial(p, n) to find the multiplicity of p in n! without calculating the factorial. (#18671 by @sachin-4099)

        implemented gaussian prime test (#18673 by @abhinav28071999)

        is_nthpow_residue no longer raises ValueError when a < 0 (#18398 by @abhinav28071999)

        polynomial_congruence recognizes x**n + a = 0 mod m as a special case (#18398 by @abhinav28071999)

        Added polynomial_congruence(expr, m) to find values congruent (mod m) to a polynomial (#18294 by @abhinav28071999)

        is_nthpow_residue handles numbers that are not powers of a primitive root. (#18337 by @abhinav28071999)

        Fixes nthroot_mod for prime powers (#18274 by @abhinav28071999)

        nthroot_mod now supports composite moduli (#18199 by @abhinav28071999)

        Added dra and drm to calculate digital root via addition and multiplication (#16496 by @abhinav28071999 and @smichrinav28071999)

        Make nthroot_mod , primitive_root and _primitive_root_prime_iter incompatible with composite modulo. (#18194 by @risubaba)

        In def _sqrt_mod_prime_power(a, p, k): it is assumed that p is a prime number. And this function caled check for zero in is_nthpow_residue. (#18129 by @erdOne)
        Added proper_divisor and proper_divisor_count functions (#18085 by @adhoc-king and @czgdp1807)
        Proper exception when accessing index 0 of sieve. (#18013 by @JulienPalard)

    parsing

        added support for unary operators: unary plus(+), unary minus(-), pre/post increment(++), pre/post decrement(--) and logical NOT(!) in C parser (#19140 by @smitgajjar)

        added support for parenthesized expression in C parser (#19140 b as_expr method first to convert the Poly to an Expr. To get a Poly always use as_poly to convert the Expr to a Poly. (#18613 by @oscarbenjamin)

        DEPRECATION: Passing Poly as the integrand to the integrate function or Integral class is now deprecated. Use the integrate method instead e.g. Poly(x, x).integrate(x) (#18613 by @oscarbenjamin)

        add condition for f == 0 to Piecewise solution for symbolic quartic polynomials (#18571 by @harsh9200)

        Fixed polynomial gcd bug (#18566 by @Smit-create)

        Added check for expressions containing GoldenRatio and TribonacciConstant (#18535 by @Smit-create)

        Added expand in simplify method of ExpressionDomain (#18472 by @Smit-create)

        Fixed the issue of cancel not expanding the product of irrational conjugates and added Tests (#18448 by @iamabhishek0)

        Prevent creation of CC from changing the context of RealElement. (#18312 by @V1krant)

        Changes in Poly.__new__() to make it handle simplified Matrix (#18159 by @Smit-create)

        interpolate will no longer return nan when x is a supplied coordinate (#18030 by @smichr)

        interpolating_poly will raise an error if x is not symbolic (#18030 by @smichr)

        interpolating_poly will raise an error if X or Y depend on x (#18030 by @smichr)

        interpolating-poly will now use only the first n points in X and Y (#18030 by @smichr)

        Added KSY_precondition() to test for the Kapur-Saxena-Yang precondition (#17974 by @ctsiagkalis)

        Added get_KSY_Dixon_resultant() and auxiliary methods for computing the KSY approach to Dixon's Resultant (#17974 by @ctsiagkalis)

    printing
        the inverse hyperbolic functions now respect the inv_trig_style printer setting (#19235 by @eric-wieser)

        Fixed numpy printer raising error for unevaluated numeric power. (#19170 by @sylee957)

        Fixed IdentityFunction printing for LaTeX. (#19032 by @sylee957)

        Added parenthesize_super option to LatexPrinter. (#18256 by @JSS95 and @mcpl-sympy)

        Removing python2 support from PythonCodePrinter (#18381 by @Smit-create)

        Added support for airy functions in the SciPyPrinter class. (#18908 by @OmarWagih1)

        allowed ReprPrinter to maintain original expr order via turning ordering off (#18777 by @leerobert)

        Fix lambdify with Min for arrays of more than one dimension (#18774 by @sbt4104)

        Fixed MatMul with complex coefficients raising error when printed. (#18744 by @sylee957)

        fixes incorrect parenthesizes in latex print of integral (#18772 by @Ryand1234)

        fixes nested differentiation problem in latex format (#18740 by @Ryand1234)

        added Python printer for KroneckerDelta (#18185 by @m93a)

        Added min and max options for printers thod of undetermined coefficients. (#18410 by @Mohitbalwani26)

        Fixed checkodesol for some cases when the solution returned by variation of parameters was correct but chekodesol couldn't simplify it. (#18376 by @Mohitbalwani26)

        Fixed dsolve for some cases of linear non-homogeneous ODEs when using the method of undetermined coefficients. (#18309 by @Mohitbalwani26)

        Changed return type from None to [], as in #18199 the return type of nth_root was changed when all_root = True and no root exists (#18285 by @abhinav28071999)

        ode.py - solve function is used to express the equation in factorised form (#18214 by @Mohitbalwani26 and @smichr)

        Fixed a bug in diophantine where negative coefficients could lead to incomplete sction with permute=True. (#18200 by @gschintgen)

        The diophantine solver no longer raises for unsympified inputs. (#18201 by @oscarbenjamin)

        fixed a bug in diophantine when using permute=True which caused incomplete permutations to be returned (#18189 by @abhinav28071999)

        diophantine.py - fixed bug where AttributeError was raised in some cases. (#18167 by @Mohitbalwani26)

        Solving of hyperbolic equations improved in solveset. (#14053 by @gschintgen, @ishanaj, @oscarbenjamin, and @oscargus)
        Copy edited solvers.py to reflect the style guide for Google Season of Docs. (#17921 by @lglattly)

    stats

        Allowing the user to define custom distributions (#19123 by @Smit-create)

        Added coskewness (#18935 by @Smit-create)

        Added sampling methods for discrete random variables (#18289 by @Smit-create)

        Added median function. (#18300 by @Smit-create)

        Updated some documentation in NormalGamma and JointRV functions (#18589 by @akash9712 8336 by @Smit-create)

        Fixed domain bug in probability method of ContinuousPspace in sympy/stats/crv.py (#18311 by @Smit-create)

        Added Bernoulli Process in sympy/stats/stochastic_process_types.py (#18173 by @Smit-create)

        Added Heger bound (#18605 by @Smit-create)

        Implemented derivatives with respect to symbols in tensor expressions (#18093 by @joha2 and @Upabjojr)

        Implemented derivatives with respect to tensors in tensor expressions (#18093 by @joha2 and @Upabjojr)

        Added _eval_simplify method for class ImmutableDenseNDimArray (#18369 by @iamabhishek0)

        Fixing bug in replacing indices in PartialDerivative tensor objects. (#18242 by @Upabjojr)

        Tensor module: refactory to allow mixing PartialDerivative and TensAdd. (#18224 by @Upabjojr)

        Fix PartialDerivative operator to correctly handle the valence (covariant/contravariant) of the deriving variable. (#18166 by @Upabjojr)

        .dummy_fmt changed to .dummy_name (#17518 by @drybalka)

        metric parameter for TensorIndexType is now split into 2 optional parameters metric_name and metric_symmetry (#17518 by @drybalka)

        TensorIndexType.dim is now a symbol and not None (#17518 by @drybalka)

utilities

        Overflow condition and negative argument for 'ibin' added (#18973 by @Arpan612)

        iterables - uniq will now raise a RuntimeError if a size change of the sequence is detected (#18835 by @smichr)

        iterables now includes is_palindromic to check if a sequence (or slice thereof) is palindromic (#18807 by @smichr)

        iterables: generate_derangements now handles unsorted input correctly (#18810 by @smichr)

        Code for the test runner is moved to a new sympy.testing package. (#18095 by @oscarbenjamin)

        lambdify: avoid using scipy versions of numpy functions, which are deprecated, in lambdify. (#18080 by @sylee957)

    other

        Replace inspect.getargspec with getfullargspec (#18784 by @sethtroisi)

        Updated README to include details about how to install SymPy using PyPI (#18518 by @mijo2)

        Corrected an inconsistency in the "Advanced Expression Manipulation" section of the tutorial. (#18287 by @Smit-create)

        Submodule names are no longer imported with from sympy import *. They can still be imported directly like from sympy import core or accessed like sympy.core, or like sys.modules['sympy.simplify'] for modules that share names with SymPy functions. (#18245 by @oscarbenjamin)

        README.rst - Added the codecov Badge in readme.rst (#18266 by @Mohitbalwani26)

        updated the README.rst and doc/README.rst with links to the SymPy Documentation Style Guide. (#17922 by @lglattly)


(ryoon)
diff -r1.25 -r1.26 pkgsrc/math/py-sympy/Makefile
diff -r1.18 -r1.19 pkgsrc/math/py-sympy/PLIST
diff -r1.16 -r1.17 pkgsrc/math/py-sympy/distinfo

cvs diff -r1.25 -r1.26 pkgsrc/math/py-sympy/Makefile (expand / switch to unified diff)

--- pkgsrc/math/py-sympy/Makefile 2020/01/31 04:51:40 1.25
+++ pkgsrc/math/py-sympy/Makefile 2020/09/20 14:30:01 1.26
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.25 2020/01/31 04:51:40 minskim Exp $ 1# $NetBSD: Makefile,v 1.26 2020/09/20 14:30:01 ryoon Exp $
2 2
3DISTNAME= sympy-1.5.1 3DISTNAME= sympy-1.6.2
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= math python 5CATEGORIES= math python
6MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/}
7 7
8MAINTAINER= minskim@NetBSD.org 8MAINTAINER= minskim@NetBSD.org
9HOMEPAGE= https://www.sympy.org/ 9HOMEPAGE= https://www.sympy.org/
10COMMENT= Python library for symbolic mathematics 10COMMENT= Python library for symbolic mathematics
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-mpmath>=0.19:../../math/py-mpmath 13DEPENDS+= ${PYPKGPREFIX}-mpmath>=0.19:../../math/py-mpmath
14 14
15USE_LANGUAGES= # none 15USE_LANGUAGES= # none
16 16

cvs diff -r1.18 -r1.19 pkgsrc/math/py-sympy/PLIST (expand / switch to unified diff)

--- pkgsrc/math/py-sympy/PLIST 2020/01/24 16:20:24 1.18
+++ pkgsrc/math/py-sympy/PLIST 2020/09/20 14:30:01 1.19
@@ -1,25 +1,25 @@ @@ -1,25 +1,25 @@
1@comment $NetBSD: PLIST,v 1.18 2020/01/24 16:20:24 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.19 2020/09/20 14:30:01 ryoon Exp $
2bin/isympy${PYVERSSUFFIX} 2bin/isympy${PYVERSSUFFIX}
 3${PYSITELIB}/isympy.py
 4${PYSITELIB}/isympy.pyc
 5${PYSITELIB}/isympy.pyo
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 6${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 7${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 8${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 9${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 10${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 11${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 12${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/isympy.py 
11${PYSITELIB}/isympy.pyc 
12${PYSITELIB}/isympy.pyo 
13${PYSITELIB}/sympy/__init__.py 13${PYSITELIB}/sympy/__init__.py
14${PYSITELIB}/sympy/__init__.pyc 14${PYSITELIB}/sympy/__init__.pyc
15${PYSITELIB}/sympy/__init__.pyo 15${PYSITELIB}/sympy/__init__.pyo
16${PYSITELIB}/sympy/abc.py 16${PYSITELIB}/sympy/abc.py
17${PYSITELIB}/sympy/abc.pyc 17${PYSITELIB}/sympy/abc.pyc
18${PYSITELIB}/sympy/abc.pyo 18${PYSITELIB}/sympy/abc.pyo
19${PYSITELIB}/sympy/algebras/__init__.py 19${PYSITELIB}/sympy/algebras/__init__.py
20${PYSITELIB}/sympy/algebras/__init__.pyc 20${PYSITELIB}/sympy/algebras/__init__.pyc
21${PYSITELIB}/sympy/algebras/__init__.pyo 21${PYSITELIB}/sympy/algebras/__init__.pyo
22${PYSITELIB}/sympy/algebras/quaternion.py 22${PYSITELIB}/sympy/algebras/quaternion.py
23${PYSITELIB}/sympy/algebras/quaternion.pyc 23${PYSITELIB}/sympy/algebras/quaternion.pyc
24${PYSITELIB}/sympy/algebras/quaternion.pyo 24${PYSITELIB}/sympy/algebras/quaternion.pyo
25${PYSITELIB}/sympy/algebras/tests/__init__.py 25${PYSITELIB}/sympy/algebras/tests/__init__.py
@@ -276,26 +276,29 @@ ${PYSITELIB}/sympy/combinatorics/permuta @@ -276,26 +276,29 @@ ${PYSITELIB}/sympy/combinatorics/permuta
276${PYSITELIB}/sympy/combinatorics/permutations.pyo 276${PYSITELIB}/sympy/combinatorics/permutations.pyo
277${PYSITELIB}/sympy/combinatorics/polyhedron.py 277${PYSITELIB}/sympy/combinatorics/polyhedron.py
278${PYSITELIB}/sympy/combinatorics/polyhedron.pyc 278${PYSITELIB}/sympy/combinatorics/polyhedron.pyc
279${PYSITELIB}/sympy/combinatorics/polyhedron.pyo 279${PYSITELIB}/sympy/combinatorics/polyhedron.pyo
280${PYSITELIB}/sympy/combinatorics/prufer.py 280${PYSITELIB}/sympy/combinatorics/prufer.py
281${PYSITELIB}/sympy/combinatorics/prufer.pyc 281${PYSITELIB}/sympy/combinatorics/prufer.pyc
282${PYSITELIB}/sympy/combinatorics/prufer.pyo 282${PYSITELIB}/sympy/combinatorics/prufer.pyo
283${PYSITELIB}/sympy/combinatorics/rewritingsystem.py 283${PYSITELIB}/sympy/combinatorics/rewritingsystem.py
284${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyc 284${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyc
285${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyo 285${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyo
286${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.py 286${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.py
287${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyc 287${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyc
288${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyo 288${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyo
 289${PYSITELIB}/sympy/combinatorics/schur_number.py
 290${PYSITELIB}/sympy/combinatorics/schur_number.pyc
 291${PYSITELIB}/sympy/combinatorics/schur_number.pyo
289${PYSITELIB}/sympy/combinatorics/subsets.py 292${PYSITELIB}/sympy/combinatorics/subsets.py
290${PYSITELIB}/sympy/combinatorics/subsets.pyc 293${PYSITELIB}/sympy/combinatorics/subsets.pyc
291${PYSITELIB}/sympy/combinatorics/subsets.pyo 294${PYSITELIB}/sympy/combinatorics/subsets.pyo
292${PYSITELIB}/sympy/combinatorics/tensor_can.py 295${PYSITELIB}/sympy/combinatorics/tensor_can.py
293${PYSITELIB}/sympy/combinatorics/tensor_can.pyc 296${PYSITELIB}/sympy/combinatorics/tensor_can.pyc
294${PYSITELIB}/sympy/combinatorics/tensor_can.pyo 297${PYSITELIB}/sympy/combinatorics/tensor_can.pyo
295${PYSITELIB}/sympy/combinatorics/tests/__init__.py 298${PYSITELIB}/sympy/combinatorics/tests/__init__.py
296${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc 299${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc
297${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo 300${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo
298${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.py 301${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.py
299${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.pyc 302${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.pyc
300${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.pyo 303${PYSITELIB}/sympy/combinatorics/tests/test_coset_table.pyo
301${PYSITELIB}/sympy/combinatorics/tests/test_fp_groups.py 304${PYSITELIB}/sympy/combinatorics/tests/test_fp_groups.py
@@ -330,26 +333,29 @@ ${PYSITELIB}/sympy/combinatorics/tests/t @@ -330,26 +333,29 @@ ${PYSITELIB}/sympy/combinatorics/tests/t
330${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo 333${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo
331${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py 334${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py
332${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc 335${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc
333${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo 336${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo
334${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py 337${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py
335${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc 338${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc
336${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo 339${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo
337${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py 340${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py
338${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc 341${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc
339${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo 342${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo
340${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.py 343${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.py
341${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.pyc 344${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.pyc
342${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.pyo 345${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.pyo
 346${PYSITELIB}/sympy/combinatorics/tests/test_schur_number.py
 347${PYSITELIB}/sympy/combinatorics/tests/test_schur_number.pyc
 348${PYSITELIB}/sympy/combinatorics/tests/test_schur_number.pyo
343${PYSITELIB}/sympy/combinatorics/tests/test_subsets.py 349${PYSITELIB}/sympy/combinatorics/tests/test_subsets.py
344${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyc 350${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyc
345${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyo 351${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyo
346${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.py 352${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.py
347${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyc 353${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyc
348${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyo 354${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyo
349${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py 355${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py
350${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc 356${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc
351${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo 357${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo
352${PYSITELIB}/sympy/combinatorics/tests/test_util.py 358${PYSITELIB}/sympy/combinatorics/tests/test_util.py
353${PYSITELIB}/sympy/combinatorics/tests/test_util.pyc 359${PYSITELIB}/sympy/combinatorics/tests/test_util.pyc
354${PYSITELIB}/sympy/combinatorics/tests/test_util.pyo 360${PYSITELIB}/sympy/combinatorics/tests/test_util.pyo
355${PYSITELIB}/sympy/combinatorics/testutil.py 361${PYSITELIB}/sympy/combinatorics/testutil.py
@@ -453,29 +459,26 @@ ${PYSITELIB}/sympy/core/containers.pyc @@ -453,29 +459,26 @@ ${PYSITELIB}/sympy/core/containers.pyc
453${PYSITELIB}/sympy/core/containers.pyo 459${PYSITELIB}/sympy/core/containers.pyo
454${PYSITELIB}/sympy/core/core.py 460${PYSITELIB}/sympy/core/core.py
455${PYSITELIB}/sympy/core/core.pyc 461${PYSITELIB}/sympy/core/core.pyc
456${PYSITELIB}/sympy/core/core.pyo 462${PYSITELIB}/sympy/core/core.pyo
457${PYSITELIB}/sympy/core/coreerrors.py 463${PYSITELIB}/sympy/core/coreerrors.py
458${PYSITELIB}/sympy/core/coreerrors.pyc 464${PYSITELIB}/sympy/core/coreerrors.pyc
459${PYSITELIB}/sympy/core/coreerrors.pyo 465${PYSITELIB}/sympy/core/coreerrors.pyo
460${PYSITELIB}/sympy/core/decorators.py 466${PYSITELIB}/sympy/core/decorators.py
461${PYSITELIB}/sympy/core/decorators.pyc 467${PYSITELIB}/sympy/core/decorators.pyc
462${PYSITELIB}/sympy/core/decorators.pyo 468${PYSITELIB}/sympy/core/decorators.pyo
463${PYSITELIB}/sympy/core/evalf.py 469${PYSITELIB}/sympy/core/evalf.py
464${PYSITELIB}/sympy/core/evalf.pyc 470${PYSITELIB}/sympy/core/evalf.pyc
465${PYSITELIB}/sympy/core/evalf.pyo 471${PYSITELIB}/sympy/core/evalf.pyo
466${PYSITELIB}/sympy/core/evaluate.py 
467${PYSITELIB}/sympy/core/evaluate.pyc 
468${PYSITELIB}/sympy/core/evaluate.pyo 
469${PYSITELIB}/sympy/core/expr.py 472${PYSITELIB}/sympy/core/expr.py
470${PYSITELIB}/sympy/core/expr.pyc 473${PYSITELIB}/sympy/core/expr.pyc
471${PYSITELIB}/sympy/core/expr.pyo 474${PYSITELIB}/sympy/core/expr.pyo
472${PYSITELIB}/sympy/core/exprtools.py 475${PYSITELIB}/sympy/core/exprtools.py
473${PYSITELIB}/sympy/core/exprtools.pyc 476${PYSITELIB}/sympy/core/exprtools.pyc
474${PYSITELIB}/sympy/core/exprtools.pyo 477${PYSITELIB}/sympy/core/exprtools.pyo
475${PYSITELIB}/sympy/core/facts.py 478${PYSITELIB}/sympy/core/facts.py
476${PYSITELIB}/sympy/core/facts.pyc 479${PYSITELIB}/sympy/core/facts.pyc
477${PYSITELIB}/sympy/core/facts.pyo 480${PYSITELIB}/sympy/core/facts.pyo
478${PYSITELIB}/sympy/core/function.py 481${PYSITELIB}/sympy/core/function.py
479${PYSITELIB}/sympy/core/function.pyc 482${PYSITELIB}/sympy/core/function.pyc
480${PYSITELIB}/sympy/core/function.pyo 483${PYSITELIB}/sympy/core/function.pyo
481${PYSITELIB}/sympy/core/logic.py 484${PYSITELIB}/sympy/core/logic.py
@@ -486,26 +489,29 @@ ${PYSITELIB}/sympy/core/mod.pyc @@ -486,26 +489,29 @@ ${PYSITELIB}/sympy/core/mod.pyc
486${PYSITELIB}/sympy/core/mod.pyo 489${PYSITELIB}/sympy/core/mod.pyo
487${PYSITELIB}/sympy/core/mul.py 490${PYSITELIB}/sympy/core/mul.py
488${PYSITELIB}/sympy/core/mul.pyc 491${PYSITELIB}/sympy/core/mul.pyc
489${PYSITELIB}/sympy/core/mul.pyo 492${PYSITELIB}/sympy/core/mul.pyo
490${PYSITELIB}/sympy/core/multidimensional.py 493${PYSITELIB}/sympy/core/multidimensional.py
491${PYSITELIB}/sympy/core/multidimensional.pyc 494${PYSITELIB}/sympy/core/multidimensional.pyc
492${PYSITELIB}/sympy/core/multidimensional.pyo 495${PYSITELIB}/sympy/core/multidimensional.pyo
493${PYSITELIB}/sympy/core/numbers.py 496${PYSITELIB}/sympy/core/numbers.py
494${PYSITELIB}/sympy/core/numbers.pyc 497${PYSITELIB}/sympy/core/numbers.pyc
495${PYSITELIB}/sympy/core/numbers.pyo 498${PYSITELIB}/sympy/core/numbers.pyo
496${PYSITELIB}/sympy/core/operations.py 499${PYSITELIB}/sympy/core/operations.py
497${PYSITELIB}/sympy/core/operations.pyc 500${PYSITELIB}/sympy/core/operations.pyc
498${PYSITELIB}/sympy/core/operations.pyo 501${PYSITELIB}/sympy/core/operations.pyo
 502${PYSITELIB}/sympy/core/parameters.py
 503${PYSITELIB}/sympy/core/parameters.pyc
 504${PYSITELIB}/sympy/core/parameters.pyo
499${PYSITELIB}/sympy/core/power.py 505${PYSITELIB}/sympy/core/power.py
500${PYSITELIB}/sympy/core/power.pyc 506${PYSITELIB}/sympy/core/power.pyc
501${PYSITELIB}/sympy/core/power.pyo 507${PYSITELIB}/sympy/core/power.pyo
502${PYSITELIB}/sympy/core/relational.py 508${PYSITELIB}/sympy/core/relational.py
503${PYSITELIB}/sympy/core/relational.pyc 509${PYSITELIB}/sympy/core/relational.pyc
504${PYSITELIB}/sympy/core/relational.pyo 510${PYSITELIB}/sympy/core/relational.pyo
505${PYSITELIB}/sympy/core/rules.py 511${PYSITELIB}/sympy/core/rules.py
506${PYSITELIB}/sympy/core/rules.pyc 512${PYSITELIB}/sympy/core/rules.pyc
507${PYSITELIB}/sympy/core/rules.pyo 513${PYSITELIB}/sympy/core/rules.pyo
508${PYSITELIB}/sympy/core/singleton.py 514${PYSITELIB}/sympy/core/singleton.py
509${PYSITELIB}/sympy/core/singleton.pyc 515${PYSITELIB}/sympy/core/singleton.pyc
510${PYSITELIB}/sympy/core/singleton.pyo 516${PYSITELIB}/sympy/core/singleton.pyo
511${PYSITELIB}/sympy/core/symbol.py 517${PYSITELIB}/sympy/core/symbol.py
@@ -549,29 +555,26 @@ ${PYSITELIB}/sympy/core/tests/test_count @@ -549,29 +555,26 @@ ${PYSITELIB}/sympy/core/tests/test_count
549${PYSITELIB}/sympy/core/tests/test_count_ops.pyo 555${PYSITELIB}/sympy/core/tests/test_count_ops.pyo
550${PYSITELIB}/sympy/core/tests/test_diff.py 556${PYSITELIB}/sympy/core/tests/test_diff.py
551${PYSITELIB}/sympy/core/tests/test_diff.pyc 557${PYSITELIB}/sympy/core/tests/test_diff.pyc
552${PYSITELIB}/sympy/core/tests/test_diff.pyo 558${PYSITELIB}/sympy/core/tests/test_diff.pyo
553${PYSITELIB}/sympy/core/tests/test_equal.py 559${PYSITELIB}/sympy/core/tests/test_equal.py
554${PYSITELIB}/sympy/core/tests/test_equal.pyc 560${PYSITELIB}/sympy/core/tests/test_equal.pyc
555${PYSITELIB}/sympy/core/tests/test_equal.pyo 561${PYSITELIB}/sympy/core/tests/test_equal.pyo
556${PYSITELIB}/sympy/core/tests/test_eval.py 562${PYSITELIB}/sympy/core/tests/test_eval.py
557${PYSITELIB}/sympy/core/tests/test_eval.pyc 563${PYSITELIB}/sympy/core/tests/test_eval.pyc
558${PYSITELIB}/sympy/core/tests/test_eval.pyo 564${PYSITELIB}/sympy/core/tests/test_eval.pyo
559${PYSITELIB}/sympy/core/tests/test_evalf.py 565${PYSITELIB}/sympy/core/tests/test_evalf.py
560${PYSITELIB}/sympy/core/tests/test_evalf.pyc 566${PYSITELIB}/sympy/core/tests/test_evalf.pyc
561${PYSITELIB}/sympy/core/tests/test_evalf.pyo 567${PYSITELIB}/sympy/core/tests/test_evalf.pyo
562${PYSITELIB}/sympy/core/tests/test_evaluate.py 
563${PYSITELIB}/sympy/core/tests/test_evaluate.pyc 
564${PYSITELIB}/sympy/core/tests/test_evaluate.pyo 
565${PYSITELIB}/sympy/core/tests/test_expand.py 568${PYSITELIB}/sympy/core/tests/test_expand.py
566${PYSITELIB}/sympy/core/tests/test_expand.pyc 569${PYSITELIB}/sympy/core/tests/test_expand.pyc
567${PYSITELIB}/sympy/core/tests/test_expand.pyo 570${PYSITELIB}/sympy/core/tests/test_expand.pyo
568${PYSITELIB}/sympy/core/tests/test_expr.py 571${PYSITELIB}/sympy/core/tests/test_expr.py
569${PYSITELIB}/sympy/core/tests/test_expr.pyc 572${PYSITELIB}/sympy/core/tests/test_expr.pyc
570${PYSITELIB}/sympy/core/tests/test_expr.pyo 573${PYSITELIB}/sympy/core/tests/test_expr.pyo
571${PYSITELIB}/sympy/core/tests/test_exprtools.py 574${PYSITELIB}/sympy/core/tests/test_exprtools.py
572${PYSITELIB}/sympy/core/tests/test_exprtools.pyc 575${PYSITELIB}/sympy/core/tests/test_exprtools.pyc
573${PYSITELIB}/sympy/core/tests/test_exprtools.pyo 576${PYSITELIB}/sympy/core/tests/test_exprtools.pyo
574${PYSITELIB}/sympy/core/tests/test_facts.py 577${PYSITELIB}/sympy/core/tests/test_facts.py
575${PYSITELIB}/sympy/core/tests/test_facts.pyc 578${PYSITELIB}/sympy/core/tests/test_facts.pyc
576${PYSITELIB}/sympy/core/tests/test_facts.pyo 579${PYSITELIB}/sympy/core/tests/test_facts.pyo
577${PYSITELIB}/sympy/core/tests/test_function.py 580${PYSITELIB}/sympy/core/tests/test_function.py
@@ -585,26 +588,29 @@ ${PYSITELIB}/sympy/core/tests/test_match @@ -585,26 +588,29 @@ ${PYSITELIB}/sympy/core/tests/test_match
585${PYSITELIB}/sympy/core/tests/test_match.pyo 588${PYSITELIB}/sympy/core/tests/test_match.pyo
586${PYSITELIB}/sympy/core/tests/test_multidimensional.py 589${PYSITELIB}/sympy/core/tests/test_multidimensional.py
587${PYSITELIB}/sympy/core/tests/test_multidimensional.pyc 590${PYSITELIB}/sympy/core/tests/test_multidimensional.pyc
588${PYSITELIB}/sympy/core/tests/test_multidimensional.pyo 591${PYSITELIB}/sympy/core/tests/test_multidimensional.pyo
589${PYSITELIB}/sympy/core/tests/test_noncommutative.py 592${PYSITELIB}/sympy/core/tests/test_noncommutative.py
590${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc 593${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc
591${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo 594${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo
592${PYSITELIB}/sympy/core/tests/test_numbers.py 595${PYSITELIB}/sympy/core/tests/test_numbers.py
593${PYSITELIB}/sympy/core/tests/test_numbers.pyc 596${PYSITELIB}/sympy/core/tests/test_numbers.pyc
594${PYSITELIB}/sympy/core/tests/test_numbers.pyo 597${PYSITELIB}/sympy/core/tests/test_numbers.pyo
595${PYSITELIB}/sympy/core/tests/test_operations.py 598${PYSITELIB}/sympy/core/tests/test_operations.py
596${PYSITELIB}/sympy/core/tests/test_operations.pyc 599${PYSITELIB}/sympy/core/tests/test_operations.pyc
597${PYSITELIB}/sympy/core/tests/test_operations.pyo 600${PYSITELIB}/sympy/core/tests/test_operations.pyo
 601${PYSITELIB}/sympy/core/tests/test_parameters.py
 602${PYSITELIB}/sympy/core/tests/test_parameters.pyc
 603${PYSITELIB}/sympy/core/tests/test_parameters.pyo
598${PYSITELIB}/sympy/core/tests/test_power.py 604${PYSITELIB}/sympy/core/tests/test_power.py
599${PYSITELIB}/sympy/core/tests/test_power.pyc 605${PYSITELIB}/sympy/core/tests/test_power.pyc
600${PYSITELIB}/sympy/core/tests/test_power.pyo 606${PYSITELIB}/sympy/core/tests/test_power.pyo
601${PYSITELIB}/sympy/core/tests/test_priority.py 607${PYSITELIB}/sympy/core/tests/test_priority.py
602${PYSITELIB}/sympy/core/tests/test_priority.pyc 608${PYSITELIB}/sympy/core/tests/test_priority.pyc
603${PYSITELIB}/sympy/core/tests/test_priority.pyo 609${PYSITELIB}/sympy/core/tests/test_priority.pyo
604${PYSITELIB}/sympy/core/tests/test_relational.py 610${PYSITELIB}/sympy/core/tests/test_relational.py
605${PYSITELIB}/sympy/core/tests/test_relational.pyc 611${PYSITELIB}/sympy/core/tests/test_relational.pyc
606${PYSITELIB}/sympy/core/tests/test_relational.pyo 612${PYSITELIB}/sympy/core/tests/test_relational.pyo
607${PYSITELIB}/sympy/core/tests/test_rules.py 613${PYSITELIB}/sympy/core/tests/test_rules.py
608${PYSITELIB}/sympy/core/tests/test_rules.pyc 614${PYSITELIB}/sympy/core/tests/test_rules.pyc
609${PYSITELIB}/sympy/core/tests/test_rules.pyo 615${PYSITELIB}/sympy/core/tests/test_rules.pyo
610${PYSITELIB}/sympy/core/tests/test_singleton.py 616${PYSITELIB}/sympy/core/tests/test_singleton.py
@@ -645,26 +651,29 @@ ${PYSITELIB}/sympy/crypto/tests/test_cry @@ -645,26 +651,29 @@ ${PYSITELIB}/sympy/crypto/tests/test_cry
645${PYSITELIB}/sympy/crypto/tests/test_crypto.pyo 651${PYSITELIB}/sympy/crypto/tests/test_crypto.pyo
646${PYSITELIB}/sympy/deprecated/__init__.py 652${PYSITELIB}/sympy/deprecated/__init__.py
647${PYSITELIB}/sympy/deprecated/__init__.pyc 653${PYSITELIB}/sympy/deprecated/__init__.pyc
648${PYSITELIB}/sympy/deprecated/__init__.pyo 654${PYSITELIB}/sympy/deprecated/__init__.pyo
649${PYSITELIB}/sympy/deprecated/class_registry.py 655${PYSITELIB}/sympy/deprecated/class_registry.py
650${PYSITELIB}/sympy/deprecated/class_registry.pyc 656${PYSITELIB}/sympy/deprecated/class_registry.pyc
651${PYSITELIB}/sympy/deprecated/class_registry.pyo 657${PYSITELIB}/sympy/deprecated/class_registry.pyo
652${PYSITELIB}/sympy/deprecated/tests/__init__.py 658${PYSITELIB}/sympy/deprecated/tests/__init__.py
653${PYSITELIB}/sympy/deprecated/tests/__init__.pyc 659${PYSITELIB}/sympy/deprecated/tests/__init__.pyc
654${PYSITELIB}/sympy/deprecated/tests/__init__.pyo 660${PYSITELIB}/sympy/deprecated/tests/__init__.pyo
655${PYSITELIB}/sympy/deprecated/tests/test_class_registry.py 661${PYSITELIB}/sympy/deprecated/tests/test_class_registry.py
656${PYSITELIB}/sympy/deprecated/tests/test_class_registry.pyc 662${PYSITELIB}/sympy/deprecated/tests/test_class_registry.pyc
657${PYSITELIB}/sympy/deprecated/tests/test_class_registry.pyo 663${PYSITELIB}/sympy/deprecated/tests/test_class_registry.pyo
 664${PYSITELIB}/sympy/deprecated/tests/test_deprecated_imports.py
 665${PYSITELIB}/sympy/deprecated/tests/test_deprecated_imports.pyc
 666${PYSITELIB}/sympy/deprecated/tests/test_deprecated_imports.pyo
658${PYSITELIB}/sympy/diffgeom/__init__.py 667${PYSITELIB}/sympy/diffgeom/__init__.py
659${PYSITELIB}/sympy/diffgeom/__init__.pyc 668${PYSITELIB}/sympy/diffgeom/__init__.pyc
660${PYSITELIB}/sympy/diffgeom/__init__.pyo 669${PYSITELIB}/sympy/diffgeom/__init__.pyo
661${PYSITELIB}/sympy/diffgeom/diffgeom.py 670${PYSITELIB}/sympy/diffgeom/diffgeom.py
662${PYSITELIB}/sympy/diffgeom/diffgeom.pyc 671${PYSITELIB}/sympy/diffgeom/diffgeom.pyc
663${PYSITELIB}/sympy/diffgeom/diffgeom.pyo 672${PYSITELIB}/sympy/diffgeom/diffgeom.pyo
664${PYSITELIB}/sympy/diffgeom/rn.py 673${PYSITELIB}/sympy/diffgeom/rn.py
665${PYSITELIB}/sympy/diffgeom/rn.pyc 674${PYSITELIB}/sympy/diffgeom/rn.pyc
666${PYSITELIB}/sympy/diffgeom/rn.pyo 675${PYSITELIB}/sympy/diffgeom/rn.pyo
667${PYSITELIB}/sympy/diffgeom/tests/__init__.py 676${PYSITELIB}/sympy/diffgeom/tests/__init__.py
668${PYSITELIB}/sympy/diffgeom/tests/__init__.pyc 677${PYSITELIB}/sympy/diffgeom/tests/__init__.pyc
669${PYSITELIB}/sympy/diffgeom/tests/__init__.pyo 678${PYSITELIB}/sympy/diffgeom/tests/__init__.pyo
670${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.py 679${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.py
@@ -1399,38 +1408,47 @@ ${PYSITELIB}/sympy/logic/utilities/dimac @@ -1399,38 +1408,47 @@ ${PYSITELIB}/sympy/logic/utilities/dimac
1399${PYSITELIB}/sympy/logic/utilities/dimacs.pyo 1408${PYSITELIB}/sympy/logic/utilities/dimacs.pyo
1400${PYSITELIB}/sympy/matrices/__init__.py 1409${PYSITELIB}/sympy/matrices/__init__.py
1401${PYSITELIB}/sympy/matrices/__init__.pyc 1410${PYSITELIB}/sympy/matrices/__init__.pyc
1402${PYSITELIB}/sympy/matrices/__init__.pyo 1411${PYSITELIB}/sympy/matrices/__init__.pyo
1403${PYSITELIB}/sympy/matrices/benchmarks/__init__.py 1412${PYSITELIB}/sympy/matrices/benchmarks/__init__.py
1404${PYSITELIB}/sympy/matrices/benchmarks/__init__.pyc 1413${PYSITELIB}/sympy/matrices/benchmarks/__init__.pyc
1405${PYSITELIB}/sympy/matrices/benchmarks/__init__.pyo 1414${PYSITELIB}/sympy/matrices/benchmarks/__init__.pyo
1406${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.py 1415${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.py
1407${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.pyc 1416${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.pyc
1408${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.pyo 1417${PYSITELIB}/sympy/matrices/benchmarks/bench_matrix.pyo
1409${PYSITELIB}/sympy/matrices/common.py 1418${PYSITELIB}/sympy/matrices/common.py
1410${PYSITELIB}/sympy/matrices/common.pyc 1419${PYSITELIB}/sympy/matrices/common.pyc
1411${PYSITELIB}/sympy/matrices/common.pyo 1420${PYSITELIB}/sympy/matrices/common.pyo
 1421${PYSITELIB}/sympy/matrices/decompositions.py
 1422${PYSITELIB}/sympy/matrices/decompositions.pyc
 1423${PYSITELIB}/sympy/matrices/decompositions.pyo
1412${PYSITELIB}/sympy/matrices/dense.py 1424${PYSITELIB}/sympy/matrices/dense.py
1413${PYSITELIB}/sympy/matrices/dense.pyc 1425${PYSITELIB}/sympy/matrices/dense.pyc
1414${PYSITELIB}/sympy/matrices/dense.pyo 1426${PYSITELIB}/sympy/matrices/dense.pyo
1415${PYSITELIB}/sympy/matrices/densearith.py 1427${PYSITELIB}/sympy/matrices/densearith.py
1416${PYSITELIB}/sympy/matrices/densearith.pyc 1428${PYSITELIB}/sympy/matrices/densearith.pyc
1417${PYSITELIB}/sympy/matrices/densearith.pyo 1429${PYSITELIB}/sympy/matrices/densearith.pyo
1418${PYSITELIB}/sympy/matrices/densesolve.py 1430${PYSITELIB}/sympy/matrices/densesolve.py
1419${PYSITELIB}/sympy/matrices/densesolve.pyc 1431${PYSITELIB}/sympy/matrices/densesolve.pyc
1420${PYSITELIB}/sympy/matrices/densesolve.pyo 1432${PYSITELIB}/sympy/matrices/densesolve.pyo
1421${PYSITELIB}/sympy/matrices/densetools.py 1433${PYSITELIB}/sympy/matrices/densetools.py
1422${PYSITELIB}/sympy/matrices/densetools.pyc 1434${PYSITELIB}/sympy/matrices/densetools.pyc
1423${PYSITELIB}/sympy/matrices/densetools.pyo 1435${PYSITELIB}/sympy/matrices/densetools.pyo
 1436${PYSITELIB}/sympy/matrices/determinant.py
 1437${PYSITELIB}/sympy/matrices/determinant.pyc
 1438${PYSITELIB}/sympy/matrices/determinant.pyo
 1439${PYSITELIB}/sympy/matrices/eigen.py
 1440${PYSITELIB}/sympy/matrices/eigen.pyc
 1441${PYSITELIB}/sympy/matrices/eigen.pyo
1424${PYSITELIB}/sympy/matrices/expressions/__init__.py 1442${PYSITELIB}/sympy/matrices/expressions/__init__.py
1425${PYSITELIB}/sympy/matrices/expressions/__init__.pyc 1443${PYSITELIB}/sympy/matrices/expressions/__init__.pyc
1426${PYSITELIB}/sympy/matrices/expressions/__init__.pyo 1444${PYSITELIB}/sympy/matrices/expressions/__init__.pyo
1427${PYSITELIB}/sympy/matrices/expressions/adjoint.py 1445${PYSITELIB}/sympy/matrices/expressions/adjoint.py
1428${PYSITELIB}/sympy/matrices/expressions/adjoint.pyc 1446${PYSITELIB}/sympy/matrices/expressions/adjoint.pyc
1429${PYSITELIB}/sympy/matrices/expressions/adjoint.pyo 1447${PYSITELIB}/sympy/matrices/expressions/adjoint.pyo
1430${PYSITELIB}/sympy/matrices/expressions/applyfunc.py 1448${PYSITELIB}/sympy/matrices/expressions/applyfunc.py
1431${PYSITELIB}/sympy/matrices/expressions/applyfunc.pyc 1449${PYSITELIB}/sympy/matrices/expressions/applyfunc.pyc
1432${PYSITELIB}/sympy/matrices/expressions/applyfunc.pyo 1450${PYSITELIB}/sympy/matrices/expressions/applyfunc.pyo
1433${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py 1451${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py
1434${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc 1452${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc
1435${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo 1453${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo
1436${PYSITELIB}/sympy/matrices/expressions/determinant.py 1454${PYSITELIB}/sympy/matrices/expressions/determinant.py
@@ -1462,26 +1480,29 @@ ${PYSITELIB}/sympy/matrices/expressions/ @@ -1462,26 +1480,29 @@ ${PYSITELIB}/sympy/matrices/expressions/
1462${PYSITELIB}/sympy/matrices/expressions/kronecker.pyo 1480${PYSITELIB}/sympy/matrices/expressions/kronecker.pyo
1463${PYSITELIB}/sympy/matrices/expressions/matadd.py 1481${PYSITELIB}/sympy/matrices/expressions/matadd.py
1464${PYSITELIB}/sympy/matrices/expressions/matadd.pyc 1482${PYSITELIB}/sympy/matrices/expressions/matadd.pyc
1465${PYSITELIB}/sympy/matrices/expressions/matadd.pyo 1483${PYSITELIB}/sympy/matrices/expressions/matadd.pyo
1466${PYSITELIB}/sympy/matrices/expressions/matexpr.py 1484${PYSITELIB}/sympy/matrices/expressions/matexpr.py
1467${PYSITELIB}/sympy/matrices/expressions/matexpr.pyc 1485${PYSITELIB}/sympy/matrices/expressions/matexpr.pyc
1468${PYSITELIB}/sympy/matrices/expressions/matexpr.pyo 1486${PYSITELIB}/sympy/matrices/expressions/matexpr.pyo
1469${PYSITELIB}/sympy/matrices/expressions/matmul.py 1487${PYSITELIB}/sympy/matrices/expressions/matmul.py
1470${PYSITELIB}/sympy/matrices/expressions/matmul.pyc 1488${PYSITELIB}/sympy/matrices/expressions/matmul.pyc
1471${PYSITELIB}/sympy/matrices/expressions/matmul.pyo 1489${PYSITELIB}/sympy/matrices/expressions/matmul.pyo
1472${PYSITELIB}/sympy/matrices/expressions/matpow.py 1490${PYSITELIB}/sympy/matrices/expressions/matpow.py
1473${PYSITELIB}/sympy/matrices/expressions/matpow.pyc 1491${PYSITELIB}/sympy/matrices/expressions/matpow.pyc
1474${PYSITELIB}/sympy/matrices/expressions/matpow.pyo 1492${PYSITELIB}/sympy/matrices/expressions/matpow.pyo
 1493${PYSITELIB}/sympy/matrices/expressions/permutation.py
 1494${PYSITELIB}/sympy/matrices/expressions/permutation.pyc
 1495${PYSITELIB}/sympy/matrices/expressions/permutation.pyo
1475${PYSITELIB}/sympy/matrices/expressions/slice.py 1496${PYSITELIB}/sympy/matrices/expressions/slice.py
1476${PYSITELIB}/sympy/matrices/expressions/slice.pyc 1497${PYSITELIB}/sympy/matrices/expressions/slice.pyc
1477${PYSITELIB}/sympy/matrices/expressions/slice.pyo 1498${PYSITELIB}/sympy/matrices/expressions/slice.pyo
1478${PYSITELIB}/sympy/matrices/expressions/tests/__init__.py 1499${PYSITELIB}/sympy/matrices/expressions/tests/__init__.py
1479${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyc 1500${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyc
1480${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyo 1501${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyo
1481${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.py 1502${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.py
1482${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyc 1503${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyc
1483${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyo 1504${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyo
1484${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.py 1505${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.py
1485${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.pyc 1506${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.pyc
1486${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.pyo 1507${PYSITELIB}/sympy/matrices/expressions/tests/test_applyfunc.pyo
1487${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.py 1508${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.py
@@ -1522,89 +1543,131 @@ ${PYSITELIB}/sympy/matrices/expressions/ @@ -1522,89 +1543,131 @@ ${PYSITELIB}/sympy/matrices/expressions/
1522${PYSITELIB}/sympy/matrices/expressions/tests/test_kronecker.pyo 1543${PYSITELIB}/sympy/matrices/expressions/tests/test_kronecker.pyo
1523${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.py 1544${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.py
1524${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyc 1545${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyc
1525${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyo 1546${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyo
1526${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.py 1547${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.py
1527${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.pyc 1548${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.pyc
1528${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.pyo 1549${PYSITELIB}/sympy/matrices/expressions/tests/test_matexpr.pyo
1529${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.py 1550${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.py
1530${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyc 1551${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyc
1531${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyo 1552${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyo
1532${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.py 1553${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.py
1533${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.pyc 1554${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.pyc
1534${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.pyo 1555${PYSITELIB}/sympy/matrices/expressions/tests/test_matpow.pyo
 1556${PYSITELIB}/sympy/matrices/expressions/tests/test_permutation.py
 1557${PYSITELIB}/sympy/matrices/expressions/tests/test_permutation.pyc
 1558${PYSITELIB}/sympy/matrices/expressions/tests/test_permutation.pyo
1535${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.py 1559${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.py
1536${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyc 1560${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyc
1537${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyo 1561${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyo
1538${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.py 1562${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.py
1539${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyc 1563${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyc
1540${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyo 1564${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyo
1541${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.py 1565${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.py
1542${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyc 1566${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyc
1543${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyo 1567${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyo
1544${PYSITELIB}/sympy/matrices/expressions/trace.py 1568${PYSITELIB}/sympy/matrices/expressions/trace.py
1545${PYSITELIB}/sympy/matrices/expressions/trace.pyc 1569${PYSITELIB}/sympy/matrices/expressions/trace.pyc
1546${PYSITELIB}/sympy/matrices/expressions/trace.pyo 1570${PYSITELIB}/sympy/matrices/expressions/trace.pyo
1547${PYSITELIB}/sympy/matrices/expressions/transpose.py 1571${PYSITELIB}/sympy/matrices/expressions/transpose.py
1548${PYSITELIB}/sympy/matrices/expressions/transpose.pyc 1572${PYSITELIB}/sympy/matrices/expressions/transpose.pyc
1549${PYSITELIB}/sympy/matrices/expressions/transpose.pyo 1573${PYSITELIB}/sympy/matrices/expressions/transpose.pyo
 1574${PYSITELIB}/sympy/matrices/graph.py
 1575${PYSITELIB}/sympy/matrices/graph.pyc
 1576${PYSITELIB}/sympy/matrices/graph.pyo
1550${PYSITELIB}/sympy/matrices/immutable.py 1577${PYSITELIB}/sympy/matrices/immutable.py
1551${PYSITELIB}/sympy/matrices/immutable.pyc 1578${PYSITELIB}/sympy/matrices/immutable.pyc
1552${PYSITELIB}/sympy/matrices/immutable.pyo 1579${PYSITELIB}/sympy/matrices/immutable.pyo
 1580${PYSITELIB}/sympy/matrices/inverse.py
 1581${PYSITELIB}/sympy/matrices/inverse.pyc
 1582${PYSITELIB}/sympy/matrices/inverse.pyo
1553${PYSITELIB}/sympy/matrices/matrices.py 1583${PYSITELIB}/sympy/matrices/matrices.py
1554${PYSITELIB}/sympy/matrices/matrices.pyc 1584${PYSITELIB}/sympy/matrices/matrices.pyc
1555${PYSITELIB}/sympy/matrices/matrices.pyo 1585${PYSITELIB}/sympy/matrices/matrices.pyo
1556${PYSITELIB}/sympy/matrices/normalforms.py 1586${PYSITELIB}/sympy/matrices/normalforms.py
1557${PYSITELIB}/sympy/matrices/normalforms.pyc 1587${PYSITELIB}/sympy/matrices/normalforms.pyc
1558${PYSITELIB}/sympy/matrices/normalforms.pyo 1588${PYSITELIB}/sympy/matrices/normalforms.pyo
 1589${PYSITELIB}/sympy/matrices/reductions.py
 1590${PYSITELIB}/sympy/matrices/reductions.pyc
 1591${PYSITELIB}/sympy/matrices/reductions.pyo
 1592${PYSITELIB}/sympy/matrices/solvers.py
 1593${PYSITELIB}/sympy/matrices/solvers.pyc
 1594${PYSITELIB}/sympy/matrices/solvers.pyo
1559${PYSITELIB}/sympy/matrices/sparse.py 1595${PYSITELIB}/sympy/matrices/sparse.py
1560${PYSITELIB}/sympy/matrices/sparse.pyc 1596${PYSITELIB}/sympy/matrices/sparse.pyc
1561${PYSITELIB}/sympy/matrices/sparse.pyo 1597${PYSITELIB}/sympy/matrices/sparse.pyo
1562${PYSITELIB}/sympy/matrices/sparsetools.py 1598${PYSITELIB}/sympy/matrices/sparsetools.py
1563${PYSITELIB}/sympy/matrices/sparsetools.pyc 1599${PYSITELIB}/sympy/matrices/sparsetools.pyc
1564${PYSITELIB}/sympy/matrices/sparsetools.pyo 1600${PYSITELIB}/sympy/matrices/sparsetools.pyo
 1601${PYSITELIB}/sympy/matrices/subspaces.py
 1602${PYSITELIB}/sympy/matrices/subspaces.pyc
 1603${PYSITELIB}/sympy/matrices/subspaces.pyo
1565${PYSITELIB}/sympy/matrices/tests/__init__.py 1604${PYSITELIB}/sympy/matrices/tests/__init__.py
1566${PYSITELIB}/sympy/matrices/tests/__init__.pyc 1605${PYSITELIB}/sympy/matrices/tests/__init__.pyc
1567${PYSITELIB}/sympy/matrices/tests/__init__.pyo 1606${PYSITELIB}/sympy/matrices/tests/__init__.pyo
1568${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.py 1607${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.py
1569${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.pyc 1608${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.pyc
1570${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.pyo 1609${PYSITELIB}/sympy/matrices/tests/test_commonmatrix.pyo
 1610${PYSITELIB}/sympy/matrices/tests/test_decompositions.py
 1611${PYSITELIB}/sympy/matrices/tests/test_decompositions.pyc
 1612${PYSITELIB}/sympy/matrices/tests/test_decompositions.pyo
1571${PYSITELIB}/sympy/matrices/tests/test_densearith.py 1613${PYSITELIB}/sympy/matrices/tests/test_densearith.py
1572${PYSITELIB}/sympy/matrices/tests/test_densearith.pyc 1614${PYSITELIB}/sympy/matrices/tests/test_densearith.pyc
1573${PYSITELIB}/sympy/matrices/tests/test_densearith.pyo 1615${PYSITELIB}/sympy/matrices/tests/test_densearith.pyo
1574${PYSITELIB}/sympy/matrices/tests/test_densesolve.py 1616${PYSITELIB}/sympy/matrices/tests/test_densesolve.py
1575${PYSITELIB}/sympy/matrices/tests/test_densesolve.pyc 1617${PYSITELIB}/sympy/matrices/tests/test_densesolve.pyc
1576${PYSITELIB}/sympy/matrices/tests/test_densesolve.pyo 1618${PYSITELIB}/sympy/matrices/tests/test_densesolve.pyo
1577${PYSITELIB}/sympy/matrices/tests/test_densetools.py 1619${PYSITELIB}/sympy/matrices/tests/test_densetools.py
1578${PYSITELIB}/sympy/matrices/tests/test_densetools.pyc 1620${PYSITELIB}/sympy/matrices/tests/test_densetools.pyc
1579${PYSITELIB}/sympy/matrices/tests/test_densetools.pyo 1621${PYSITELIB}/sympy/matrices/tests/test_densetools.pyo
 1622${PYSITELIB}/sympy/matrices/tests/test_determinant.py
 1623${PYSITELIB}/sympy/matrices/tests/test_determinant.pyc
 1624${PYSITELIB}/sympy/matrices/tests/test_determinant.pyo
 1625${PYSITELIB}/sympy/matrices/tests/test_eigen.py
 1626${PYSITELIB}/sympy/matrices/tests/test_eigen.pyc
 1627${PYSITELIB}/sympy/matrices/tests/test_eigen.pyo
 1628${PYSITELIB}/sympy/matrices/tests/test_graph.py
 1629${PYSITELIB}/sympy/matrices/tests/test_graph.pyc
 1630${PYSITELIB}/sympy/matrices/tests/test_graph.pyo
1580${PYSITELIB}/sympy/matrices/tests/test_immutable.py 1631${PYSITELIB}/sympy/matrices/tests/test_immutable.py
1581${PYSITELIB}/sympy/matrices/tests/test_immutable.pyc 1632${PYSITELIB}/sympy/matrices/tests/test_immutable.pyc
1582${PYSITELIB}/sympy/matrices/tests/test_immutable.pyo 1633${PYSITELIB}/sympy/matrices/tests/test_immutable.pyo
1583${PYSITELIB}/sympy/matrices/tests/test_interactions.py 1634${PYSITELIB}/sympy/matrices/tests/test_interactions.py
1584${PYSITELIB}/sympy/matrices/tests/test_interactions.pyc 1635${PYSITELIB}/sympy/matrices/tests/test_interactions.pyc
1585${PYSITELIB}/sympy/matrices/tests/test_interactions.pyo 1636${PYSITELIB}/sympy/matrices/tests/test_interactions.pyo
1586${PYSITELIB}/sympy/matrices/tests/test_matrices.py 1637${PYSITELIB}/sympy/matrices/tests/test_matrices.py
1587${PYSITELIB}/sympy/matrices/tests/test_matrices.pyc 1638${PYSITELIB}/sympy/matrices/tests/test_matrices.pyc
1588${PYSITELIB}/sympy/matrices/tests/test_matrices.pyo 1639${PYSITELIB}/sympy/matrices/tests/test_matrices.pyo
1589${PYSITELIB}/sympy/matrices/tests/test_normalforms.py 1640${PYSITELIB}/sympy/matrices/tests/test_normalforms.py
1590${PYSITELIB}/sympy/matrices/tests/test_normalforms.pyc 1641${PYSITELIB}/sympy/matrices/tests/test_normalforms.pyc
1591${PYSITELIB}/sympy/matrices/tests/test_normalforms.pyo 1642${PYSITELIB}/sympy/matrices/tests/test_normalforms.pyo
 1643${PYSITELIB}/sympy/matrices/tests/test_reductions.py
 1644${PYSITELIB}/sympy/matrices/tests/test_reductions.pyc
 1645${PYSITELIB}/sympy/matrices/tests/test_reductions.pyo
 1646${PYSITELIB}/sympy/matrices/tests/test_solvers.py
 1647${PYSITELIB}/sympy/matrices/tests/test_solvers.pyc
 1648${PYSITELIB}/sympy/matrices/tests/test_solvers.pyo
1592${PYSITELIB}/sympy/matrices/tests/test_sparse.py 1649${PYSITELIB}/sympy/matrices/tests/test_sparse.py
1593${PYSITELIB}/sympy/matrices/tests/test_sparse.pyc 1650${PYSITELIB}/sympy/matrices/tests/test_sparse.pyc
1594${PYSITELIB}/sympy/matrices/tests/test_sparse.pyo 1651${PYSITELIB}/sympy/matrices/tests/test_sparse.pyo
1595${PYSITELIB}/sympy/matrices/tests/test_sparsetools.py 1652${PYSITELIB}/sympy/matrices/tests/test_sparsetools.py
1596${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyc 1653${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyc
1597${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyo 1654${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyo
 1655${PYSITELIB}/sympy/matrices/tests/test_subspaces.py
 1656${PYSITELIB}/sympy/matrices/tests/test_subspaces.pyc
 1657${PYSITELIB}/sympy/matrices/tests/test_subspaces.pyo
 1658${PYSITELIB}/sympy/matrices/utilities.py
 1659${PYSITELIB}/sympy/matrices/utilities.pyc
 1660${PYSITELIB}/sympy/matrices/utilities.pyo
1598${PYSITELIB}/sympy/multipledispatch/__init__.py 1661${PYSITELIB}/sympy/multipledispatch/__init__.py
1599${PYSITELIB}/sympy/multipledispatch/__init__.pyc 1662${PYSITELIB}/sympy/multipledispatch/__init__.pyc
1600${PYSITELIB}/sympy/multipledispatch/__init__.pyo 1663${PYSITELIB}/sympy/multipledispatch/__init__.pyo
1601${PYSITELIB}/sympy/multipledispatch/conflict.py 1664${PYSITELIB}/sympy/multipledispatch/conflict.py
1602${PYSITELIB}/sympy/multipledispatch/conflict.pyc 1665${PYSITELIB}/sympy/multipledispatch/conflict.pyc
1603${PYSITELIB}/sympy/multipledispatch/conflict.pyo 1666${PYSITELIB}/sympy/multipledispatch/conflict.pyo
1604${PYSITELIB}/sympy/multipledispatch/core.py 1667${PYSITELIB}/sympy/multipledispatch/core.py
1605${PYSITELIB}/sympy/multipledispatch/core.pyc 1668${PYSITELIB}/sympy/multipledispatch/core.pyc
1606${PYSITELIB}/sympy/multipledispatch/core.pyo 1669${PYSITELIB}/sympy/multipledispatch/core.pyo
1607${PYSITELIB}/sympy/multipledispatch/dispatcher.py 1670${PYSITELIB}/sympy/multipledispatch/dispatcher.py
1608${PYSITELIB}/sympy/multipledispatch/dispatcher.pyc 1671${PYSITELIB}/sympy/multipledispatch/dispatcher.pyc
1609${PYSITELIB}/sympy/multipledispatch/dispatcher.pyo 1672${PYSITELIB}/sympy/multipledispatch/dispatcher.pyo
1610${PYSITELIB}/sympy/multipledispatch/tests/__init__.py 1673${PYSITELIB}/sympy/multipledispatch/tests/__init__.py
@@ -1621,29 +1684,35 @@ ${PYSITELIB}/sympy/multipledispatch/test @@ -1621,29 +1684,35 @@ ${PYSITELIB}/sympy/multipledispatch/test
1621${PYSITELIB}/sympy/multipledispatch/tests/test_dispatcher.pyo 1684${PYSITELIB}/sympy/multipledispatch/tests/test_dispatcher.pyo
1622${PYSITELIB}/sympy/multipledispatch/utils.py 1685${PYSITELIB}/sympy/multipledispatch/utils.py
1623${PYSITELIB}/sympy/multipledispatch/utils.pyc 1686${PYSITELIB}/sympy/multipledispatch/utils.pyc
1624${PYSITELIB}/sympy/multipledispatch/utils.pyo 1687${PYSITELIB}/sympy/multipledispatch/utils.pyo
1625${PYSITELIB}/sympy/ntheory/__init__.py 1688${PYSITELIB}/sympy/ntheory/__init__.py
1626${PYSITELIB}/sympy/ntheory/__init__.pyc 1689${PYSITELIB}/sympy/ntheory/__init__.pyc
1627${PYSITELIB}/sympy/ntheory/__init__.pyo 1690${PYSITELIB}/sympy/ntheory/__init__.pyo
1628${PYSITELIB}/sympy/ntheory/bbp_pi.py 1691${PYSITELIB}/sympy/ntheory/bbp_pi.py
1629${PYSITELIB}/sympy/ntheory/bbp_pi.pyc 1692${PYSITELIB}/sympy/ntheory/bbp_pi.pyc
1630${PYSITELIB}/sympy/ntheory/bbp_pi.pyo 1693${PYSITELIB}/sympy/ntheory/bbp_pi.pyo
1631${PYSITELIB}/sympy/ntheory/continued_fraction.py 1694${PYSITELIB}/sympy/ntheory/continued_fraction.py
1632${PYSITELIB}/sympy/ntheory/continued_fraction.pyc 1695${PYSITELIB}/sympy/ntheory/continued_fraction.pyc
1633${PYSITELIB}/sympy/ntheory/continued_fraction.pyo 1696${PYSITELIB}/sympy/ntheory/continued_fraction.pyo
 1697${PYSITELIB}/sympy/ntheory/digits.py
 1698${PYSITELIB}/sympy/ntheory/digits.pyc
 1699${PYSITELIB}/sympy/ntheory/digits.pyo
1634${PYSITELIB}/sympy/ntheory/egyptian_fraction.py 1700${PYSITELIB}/sympy/ntheory/egyptian_fraction.py
1635${PYSITELIB}/sympy/ntheory/egyptian_fraction.pyc 1701${PYSITELIB}/sympy/ntheory/egyptian_fraction.pyc
1636${PYSITELIB}/sympy/ntheory/egyptian_fraction.pyo 1702${PYSITELIB}/sympy/ntheory/egyptian_fraction.pyo
 1703${PYSITELIB}/sympy/ntheory/elliptic_curve.py
 1704${PYSITELIB}/sympy/ntheory/elliptic_curve.pyc
 1705${PYSITELIB}/sympy/ntheory/elliptic_curve.pyo
1637${PYSITELIB}/sympy/ntheory/factor_.py 1706${PYSITELIB}/sympy/ntheory/factor_.py
1638${PYSITELIB}/sympy/ntheory/factor_.pyc 1707${PYSITELIB}/sympy/ntheory/factor_.pyc
1639${PYSITELIB}/sympy/ntheory/factor_.pyo 1708${PYSITELIB}/sympy/ntheory/factor_.pyo
1640${PYSITELIB}/sympy/ntheory/generate.py 1709${PYSITELIB}/sympy/ntheory/generate.py
1641${PYSITELIB}/sympy/ntheory/generate.pyc 1710${PYSITELIB}/sympy/ntheory/generate.pyc
1642${PYSITELIB}/sympy/ntheory/generate.pyo 1711${PYSITELIB}/sympy/ntheory/generate.pyo
1643${PYSITELIB}/sympy/ntheory/modular.py 1712${PYSITELIB}/sympy/ntheory/modular.py
1644${PYSITELIB}/sympy/ntheory/modular.pyc 1713${PYSITELIB}/sympy/ntheory/modular.pyc
1645${PYSITELIB}/sympy/ntheory/modular.pyo 1714${PYSITELIB}/sympy/ntheory/modular.pyo
1646${PYSITELIB}/sympy/ntheory/multinomial.py 1715${PYSITELIB}/sympy/ntheory/multinomial.py
1647${PYSITELIB}/sympy/ntheory/multinomial.pyc 1716${PYSITELIB}/sympy/ntheory/multinomial.pyc
1648${PYSITELIB}/sympy/ntheory/multinomial.pyo 1717${PYSITELIB}/sympy/ntheory/multinomial.pyo
1649${PYSITELIB}/sympy/ntheory/partitions_.py 1718${PYSITELIB}/sympy/ntheory/partitions_.py
@@ -1654,29 +1723,35 @@ ${PYSITELIB}/sympy/ntheory/primetest.pyc @@ -1654,29 +1723,35 @@ ${PYSITELIB}/sympy/ntheory/primetest.pyc
1654${PYSITELIB}/sympy/ntheory/primetest.pyo 1723${PYSITELIB}/sympy/ntheory/primetest.pyo
1655${PYSITELIB}/sympy/ntheory/residue_ntheory.py 1724${PYSITELIB}/sympy/ntheory/residue_ntheory.py
1656${PYSITELIB}/sympy/ntheory/residue_ntheory.pyc 1725${PYSITELIB}/sympy/ntheory/residue_ntheory.pyc
1657${PYSITELIB}/sympy/ntheory/residue_ntheory.pyo 1726${PYSITELIB}/sympy/ntheory/residue_ntheory.pyo
1658${PYSITELIB}/sympy/ntheory/tests/__init__.py 1727${PYSITELIB}/sympy/ntheory/tests/__init__.py
1659${PYSITELIB}/sympy/ntheory/tests/__init__.pyc 1728${PYSITELIB}/sympy/ntheory/tests/__init__.pyc
1660${PYSITELIB}/sympy/ntheory/tests/__init__.pyo 1729${PYSITELIB}/sympy/ntheory/tests/__init__.pyo
1661${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.py 1730${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.py
1662${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.pyc 1731${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.pyc
1663${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.pyo 1732${PYSITELIB}/sympy/ntheory/tests/test_bbp_pi.pyo
1664${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.py 1733${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.py
1665${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.pyc 1734${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.pyc
1666${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.pyo 1735${PYSITELIB}/sympy/ntheory/tests/test_continued_fraction.pyo
 1736${PYSITELIB}/sympy/ntheory/tests/test_digits.py
 1737${PYSITELIB}/sympy/ntheory/tests/test_digits.pyc
 1738${PYSITELIB}/sympy/ntheory/tests/test_digits.pyo
1667${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.py 1739${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.py
1668${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.pyc 1740${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.pyc
1669${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.pyo 1741${PYSITELIB}/sympy/ntheory/tests/test_egyptian_fraction.pyo
 1742${PYSITELIB}/sympy/ntheory/tests/test_elliptic_curve.py
 1743${PYSITELIB}/sympy/ntheory/tests/test_elliptic_curve.pyc
 1744${PYSITELIB}/sympy/ntheory/tests/test_elliptic_curve.pyo
1670${PYSITELIB}/sympy/ntheory/tests/test_factor_.py 1745${PYSITELIB}/sympy/ntheory/tests/test_factor_.py
1671${PYSITELIB}/sympy/ntheory/tests/test_factor_.pyc 1746${PYSITELIB}/sympy/ntheory/tests/test_factor_.pyc
1672${PYSITELIB}/sympy/ntheory/tests/test_factor_.pyo 1747${PYSITELIB}/sympy/ntheory/tests/test_factor_.pyo
1673${PYSITELIB}/sympy/ntheory/tests/test_generate.py 1748${PYSITELIB}/sympy/ntheory/tests/test_generate.py
1674${PYSITELIB}/sympy/ntheory/tests/test_generate.pyc 1749${PYSITELIB}/sympy/ntheory/tests/test_generate.pyc
1675${PYSITELIB}/sympy/ntheory/tests/test_generate.pyo 1750${PYSITELIB}/sympy/ntheory/tests/test_generate.pyo
1676${PYSITELIB}/sympy/ntheory/tests/test_modular.py 1751${PYSITELIB}/sympy/ntheory/tests/test_modular.py
1677${PYSITELIB}/sympy/ntheory/tests/test_modular.pyc 1752${PYSITELIB}/sympy/ntheory/tests/test_modular.pyc
1678${PYSITELIB}/sympy/ntheory/tests/test_modular.pyo 1753${PYSITELIB}/sympy/ntheory/tests/test_modular.pyo
1679${PYSITELIB}/sympy/ntheory/tests/test_multinomial.py 1754${PYSITELIB}/sympy/ntheory/tests/test_multinomial.py
1680${PYSITELIB}/sympy/ntheory/tests/test_multinomial.pyc 1755${PYSITELIB}/sympy/ntheory/tests/test_multinomial.pyc
1681${PYSITELIB}/sympy/ntheory/tests/test_multinomial.pyo 1756${PYSITELIB}/sympy/ntheory/tests/test_multinomial.pyo
1682${PYSITELIB}/sympy/ntheory/tests/test_partitions.py 1757${PYSITELIB}/sympy/ntheory/tests/test_partitions.py
@@ -1706,32 +1781,27 @@ ${PYSITELIB}/sympy/parsing/autolev/_antl @@ -1706,32 +1781,27 @@ ${PYSITELIB}/sympy/parsing/autolev/_antl
1706${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlexer.pyo 1781${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlexer.pyo
1707${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.py 1782${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.py
1708${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyc 1783${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyc
1709${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyo 1784${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyo
1710${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.py 1785${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.py
1711${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyc 1786${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyc
1712${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyo 1787${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyo
1713${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.py 1788${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.py
1714${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyc 1789${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyc
1715${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyo 1790${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyo
1716${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.py 1791${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.py
1717${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyc 1792${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyc
1718${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyo 1793${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyo
1719${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.py 1794${PYSITELIB}/sympy/parsing/autolev/test-examples/README.txt
1720${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.pyc 
1721${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.pyo 
1722${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.py 
1723${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.pyc 
1724${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.pyo 
1725${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.al 1795${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.al
1726${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.py 1796${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.py
1727${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyc 1797${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyc
1728${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyo 1798${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyo
1729${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.al 1799${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.al
1730${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.py 1800${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.py
1731${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyc 1801${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyc
1732${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyo 1802${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyo
1733${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.al 1803${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.al
1734${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.py 1804${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.py
1735${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyc 1805${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyc
1736${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyo 1806${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyo
1737${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.al 1807${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.al
@@ -1826,26 +1896,29 @@ ${PYSITELIB}/sympy/parsing/mathematica.p @@ -1826,26 +1896,29 @@ ${PYSITELIB}/sympy/parsing/mathematica.p
1826${PYSITELIB}/sympy/parsing/mathematica.pyo 1896${PYSITELIB}/sympy/parsing/mathematica.pyo
1827${PYSITELIB}/sympy/parsing/maxima.py 1897${PYSITELIB}/sympy/parsing/maxima.py
1828${PYSITELIB}/sympy/parsing/maxima.pyc 1898${PYSITELIB}/sympy/parsing/maxima.pyc
1829${PYSITELIB}/sympy/parsing/maxima.pyo 1899${PYSITELIB}/sympy/parsing/maxima.pyo
1830${PYSITELIB}/sympy/parsing/sym_expr.py 1900${PYSITELIB}/sympy/parsing/sym_expr.py
1831${PYSITELIB}/sympy/parsing/sym_expr.pyc 1901${PYSITELIB}/sympy/parsing/sym_expr.pyc
1832${PYSITELIB}/sympy/parsing/sym_expr.pyo 1902${PYSITELIB}/sympy/parsing/sym_expr.pyo
1833${PYSITELIB}/sympy/parsing/sympy_parser.py 1903${PYSITELIB}/sympy/parsing/sympy_parser.py
1834${PYSITELIB}/sympy/parsing/sympy_parser.pyc 1904${PYSITELIB}/sympy/parsing/sympy_parser.pyc
1835${PYSITELIB}/sympy/parsing/sympy_parser.pyo 1905${PYSITELIB}/sympy/parsing/sympy_parser.pyo
1836${PYSITELIB}/sympy/parsing/tests/__init__.py 1906${PYSITELIB}/sympy/parsing/tests/__init__.py
1837${PYSITELIB}/sympy/parsing/tests/__init__.pyc 1907${PYSITELIB}/sympy/parsing/tests/__init__.pyc
1838${PYSITELIB}/sympy/parsing/tests/__init__.pyo 1908${PYSITELIB}/sympy/parsing/tests/__init__.pyo
 1909${PYSITELIB}/sympy/parsing/tests/test_ast_parser.py
 1910${PYSITELIB}/sympy/parsing/tests/test_ast_parser.pyc
 1911${PYSITELIB}/sympy/parsing/tests/test_ast_parser.pyo
1839${PYSITELIB}/sympy/parsing/tests/test_autolev.py 1912${PYSITELIB}/sympy/parsing/tests/test_autolev.py
1840${PYSITELIB}/sympy/parsing/tests/test_autolev.pyc 1913${PYSITELIB}/sympy/parsing/tests/test_autolev.pyc
1841${PYSITELIB}/sympy/parsing/tests/test_autolev.pyo 1914${PYSITELIB}/sympy/parsing/tests/test_autolev.pyo
1842${PYSITELIB}/sympy/parsing/tests/test_c_parser.py 1915${PYSITELIB}/sympy/parsing/tests/test_c_parser.py
1843${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyc 1916${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyc
1844${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyo 1917${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyo
1845${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.py 1918${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.py
1846${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyc 1919${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyc
1847${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyo 1920${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyo
1848${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py 1921${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py
1849${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc 1922${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc
1850${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo 1923${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo
1851${PYSITELIB}/sympy/parsing/tests/test_latex.py 1924${PYSITELIB}/sympy/parsing/tests/test_latex.py
@@ -3222,26 +3295,29 @@ ${PYSITELIB}/sympy/sets/fancysets.pyc @@ -3222,26 +3295,29 @@ ${PYSITELIB}/sympy/sets/fancysets.pyc
3222${PYSITELIB}/sympy/sets/fancysets.pyo 3295${PYSITELIB}/sympy/sets/fancysets.pyo
3223${PYSITELIB}/sympy/sets/handlers/__init__.py 3296${PYSITELIB}/sympy/sets/handlers/__init__.py
3224${PYSITELIB}/sympy/sets/handlers/__init__.pyc 3297${PYSITELIB}/sympy/sets/handlers/__init__.pyc
3225${PYSITELIB}/sympy/sets/handlers/__init__.pyo 3298${PYSITELIB}/sympy/sets/handlers/__init__.pyo
3226${PYSITELIB}/sympy/sets/handlers/add.py 3299${PYSITELIB}/sympy/sets/handlers/add.py
3227${PYSITELIB}/sympy/sets/handlers/add.pyc 3300${PYSITELIB}/sympy/sets/handlers/add.pyc
3228${PYSITELIB}/sympy/sets/handlers/add.pyo 3301${PYSITELIB}/sympy/sets/handlers/add.pyo
3229${PYSITELIB}/sympy/sets/handlers/functions.py 3302${PYSITELIB}/sympy/sets/handlers/functions.py
3230${PYSITELIB}/sympy/sets/handlers/functions.pyc 3303${PYSITELIB}/sympy/sets/handlers/functions.pyc
3231${PYSITELIB}/sympy/sets/handlers/functions.pyo 3304${PYSITELIB}/sympy/sets/handlers/functions.pyo
3232${PYSITELIB}/sympy/sets/handlers/intersection.py 3305${PYSITELIB}/sympy/sets/handlers/intersection.py
3233${PYSITELIB}/sympy/sets/handlers/intersection.pyc 3306${PYSITELIB}/sympy/sets/handlers/intersection.pyc
3234${PYSITELIB}/sympy/sets/handlers/intersection.pyo 3307${PYSITELIB}/sympy/sets/handlers/intersection.pyo
 3308${PYSITELIB}/sympy/sets/handlers/issubset.py
 3309${PYSITELIB}/sympy/sets/handlers/issubset.pyc
 3310${PYSITELIB}/sympy/sets/handlers/issubset.pyo
3235${PYSITELIB}/sympy/sets/handlers/mul.py 3311${PYSITELIB}/sympy/sets/handlers/mul.py
3236${PYSITELIB}/sympy/sets/handlers/mul.pyc 3312${PYSITELIB}/sympy/sets/handlers/mul.pyc
3237${PYSITELIB}/sympy/sets/handlers/mul.pyo 3313${PYSITELIB}/sympy/sets/handlers/mul.pyo
3238${PYSITELIB}/sympy/sets/handlers/power.py 3314${PYSITELIB}/sympy/sets/handlers/power.py
3239${PYSITELIB}/sympy/sets/handlers/power.pyc 3315${PYSITELIB}/sympy/sets/handlers/power.pyc
3240${PYSITELIB}/sympy/sets/handlers/power.pyo 3316${PYSITELIB}/sympy/sets/handlers/power.pyo
3241${PYSITELIB}/sympy/sets/handlers/union.py 3317${PYSITELIB}/sympy/sets/handlers/union.py
3242${PYSITELIB}/sympy/sets/handlers/union.pyc 3318${PYSITELIB}/sympy/sets/handlers/union.pyc
3243${PYSITELIB}/sympy/sets/handlers/union.pyo 3319${PYSITELIB}/sympy/sets/handlers/union.pyo
3244${PYSITELIB}/sympy/sets/ordinals.py 3320${PYSITELIB}/sympy/sets/ordinals.py
3245${PYSITELIB}/sympy/sets/ordinals.pyc 3321${PYSITELIB}/sympy/sets/ordinals.pyc
3246${PYSITELIB}/sympy/sets/ordinals.pyo 3322${PYSITELIB}/sympy/sets/ordinals.pyo
3247${PYSITELIB}/sympy/sets/powerset.py 3323${PYSITELIB}/sympy/sets/powerset.py
@@ -3381,71 +3457,101 @@ ${PYSITELIB}/sympy/solvers/benchmarks/__ @@ -3381,71 +3457,101 @@ ${PYSITELIB}/sympy/solvers/benchmarks/__
3381${PYSITELIB}/sympy/solvers/benchmarks/__init__.pyo 3457${PYSITELIB}/sympy/solvers/benchmarks/__init__.pyo
3382${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.py 3458${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.py
3383${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.pyc 3459${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.pyc
3384${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.pyo 3460${PYSITELIB}/sympy/solvers/benchmarks/bench_solvers.pyo
3385${PYSITELIB}/sympy/solvers/bivariate.py 3461${PYSITELIB}/sympy/solvers/bivariate.py
3386${PYSITELIB}/sympy/solvers/bivariate.pyc 3462${PYSITELIB}/sympy/solvers/bivariate.pyc
3387${PYSITELIB}/sympy/solvers/bivariate.pyo 3463${PYSITELIB}/sympy/solvers/bivariate.pyo
3388${PYSITELIB}/sympy/solvers/decompogen.py 3464${PYSITELIB}/sympy/solvers/decompogen.py
3389${PYSITELIB}/sympy/solvers/decompogen.pyc 3465${PYSITELIB}/sympy/solvers/decompogen.pyc
3390${PYSITELIB}/sympy/solvers/decompogen.pyo 3466${PYSITELIB}/sympy/solvers/decompogen.pyo
3391${PYSITELIB}/sympy/solvers/deutils.py 3467${PYSITELIB}/sympy/solvers/deutils.py
3392${PYSITELIB}/sympy/solvers/deutils.pyc 3468${PYSITELIB}/sympy/solvers/deutils.pyc
3393${PYSITELIB}/sympy/solvers/deutils.pyo 3469${PYSITELIB}/sympy/solvers/deutils.pyo
3394${PYSITELIB}/sympy/solvers/diophantine.py 3470${PYSITELIB}/sympy/solvers/diophantine/__init__.py
3395${PYSITELIB}/sympy/solvers/diophantine.pyc 3471${PYSITELIB}/sympy/solvers/diophantine/__init__.pyc
3396${PYSITELIB}/sympy/solvers/diophantine.pyo 3472${PYSITELIB}/sympy/solvers/diophantine/__init__.pyo
 3473${PYSITELIB}/sympy/solvers/diophantine/diophantine.py
 3474${PYSITELIB}/sympy/solvers/diophantine/diophantine.pyc
 3475${PYSITELIB}/sympy/solvers/diophantine/diophantine.pyo
 3476${PYSITELIB}/sympy/solvers/diophantine/tests/__init__.py
 3477${PYSITELIB}/sympy/solvers/diophantine/tests/__init__.pyc
 3478${PYSITELIB}/sympy/solvers/diophantine/tests/__init__.pyo
 3479${PYSITELIB}/sympy/solvers/diophantine/tests/test_diophantine.py
 3480${PYSITELIB}/sympy/solvers/diophantine/tests/test_diophantine.pyc
 3481${PYSITELIB}/sympy/solvers/diophantine/tests/test_diophantine.pyo
3397${PYSITELIB}/sympy/solvers/inequalities.py 3482${PYSITELIB}/sympy/solvers/inequalities.py
3398${PYSITELIB}/sympy/solvers/inequalities.pyc 3483${PYSITELIB}/sympy/solvers/inequalities.pyc
3399${PYSITELIB}/sympy/solvers/inequalities.pyo 3484${PYSITELIB}/sympy/solvers/inequalities.pyo
3400${PYSITELIB}/sympy/solvers/ode.py 3485${PYSITELIB}/sympy/solvers/ode/__init__.py
3401${PYSITELIB}/sympy/solvers/ode.pyc 3486${PYSITELIB}/sympy/solvers/ode/__init__.pyc
3402${PYSITELIB}/sympy/solvers/ode.pyo 3487${PYSITELIB}/sympy/solvers/ode/__init__.pyo
 3488${PYSITELIB}/sympy/solvers/ode/ode.py
 3489${PYSITELIB}/sympy/solvers/ode/ode.pyc
 3490${PYSITELIB}/sympy/solvers/ode/ode.pyo
 3491${PYSITELIB}/sympy/solvers/ode/single.py
 3492${PYSITELIB}/sympy/solvers/ode/single.pyc
 3493${PYSITELIB}/sympy/solvers/ode/single.pyo
 3494${PYSITELIB}/sympy/solvers/ode/subscheck.py
 3495${PYSITELIB}/sympy/solvers/ode/subscheck.pyc
 3496${PYSITELIB}/sympy/solvers/ode/subscheck.pyo
 3497${PYSITELIB}/sympy/solvers/ode/systems.py
 3498${PYSITELIB}/sympy/solvers/ode/systems.pyc
 3499${PYSITELIB}/sympy/solvers/ode/systems.pyo
 3500${PYSITELIB}/sympy/solvers/ode/tests/__init__.py
 3501${PYSITELIB}/sympy/solvers/ode/tests/__init__.pyc
 3502${PYSITELIB}/sympy/solvers/ode/tests/__init__.pyo
 3503${PYSITELIB}/sympy/solvers/ode/tests/test_ode.py
 3504${PYSITELIB}/sympy/solvers/ode/tests/test_ode.pyc
 3505${PYSITELIB}/sympy/solvers/ode/tests/test_ode.pyo
 3506${PYSITELIB}/sympy/solvers/ode/tests/test_single.py
 3507${PYSITELIB}/sympy/solvers/ode/tests/test_single.pyc
 3508${PYSITELIB}/sympy/solvers/ode/tests/test_single.pyo
 3509${PYSITELIB}/sympy/solvers/ode/tests/test_subscheck.py
 3510${PYSITELIB}/sympy/solvers/ode/tests/test_subscheck.pyc
 3511${PYSITELIB}/sympy/solvers/ode/tests/test_subscheck.pyo
 3512${PYSITELIB}/sympy/solvers/ode/tests/test_systems.py
 3513${PYSITELIB}/sympy/solvers/ode/tests/test_systems.pyc
 3514${PYSITELIB}/sympy/solvers/ode/tests/test_systems.pyo
3403${PYSITELIB}/sympy/solvers/pde.py 3515${PYSITELIB}/sympy/solvers/pde.py
3404${PYSITELIB}/sympy/solvers/pde.pyc 3516${PYSITELIB}/sympy/solvers/pde.pyc
3405${PYSITELIB}/sympy/solvers/pde.pyo 3517${PYSITELIB}/sympy/solvers/pde.pyo
3406${PYSITELIB}/sympy/solvers/polysys.py 3518${PYSITELIB}/sympy/solvers/polysys.py
3407${PYSITELIB}/sympy/solvers/polysys.pyc 3519${PYSITELIB}/sympy/solvers/polysys.pyc
3408${PYSITELIB}/sympy/solvers/polysys.pyo 3520${PYSITELIB}/sympy/solvers/polysys.pyo
3409${PYSITELIB}/sympy/solvers/recurr.py 3521${PYSITELIB}/sympy/solvers/recurr.py
3410${PYSITELIB}/sympy/solvers/recurr.pyc 3522${PYSITELIB}/sympy/solvers/recurr.pyc
3411${PYSITELIB}/sympy/solvers/recurr.pyo 3523${PYSITELIB}/sympy/solvers/recurr.pyo
3412${PYSITELIB}/sympy/solvers/solvers.py 3524${PYSITELIB}/sympy/solvers/solvers.py
3413${PYSITELIB}/sympy/solvers/solvers.pyc 3525${PYSITELIB}/sympy/solvers/solvers.pyc
3414${PYSITELIB}/sympy/solvers/solvers.pyo 3526${PYSITELIB}/sympy/solvers/solvers.pyo
3415${PYSITELIB}/sympy/solvers/solveset.py 3527${PYSITELIB}/sympy/solvers/solveset.py
3416${PYSITELIB}/sympy/solvers/solveset.pyc 3528${PYSITELIB}/sympy/solvers/solveset.pyc
3417${PYSITELIB}/sympy/solvers/solveset.pyo 3529${PYSITELIB}/sympy/solvers/solveset.pyo
3418${PYSITELIB}/sympy/solvers/tests/__init__.py 3530${PYSITELIB}/sympy/solvers/tests/__init__.py
3419${PYSITELIB}/sympy/solvers/tests/__init__.pyc 3531${PYSITELIB}/sympy/solvers/tests/__init__.pyc
3420${PYSITELIB}/sympy/solvers/tests/__init__.pyo 3532${PYSITELIB}/sympy/solvers/tests/__init__.pyo
3421${PYSITELIB}/sympy/solvers/tests/test_constantsimp.py 3533${PYSITELIB}/sympy/solvers/tests/test_constantsimp.py
3422${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyc 3534${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyc
3423${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyo 3535${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyo
3424${PYSITELIB}/sympy/solvers/tests/test_decompogen.py 3536${PYSITELIB}/sympy/solvers/tests/test_decompogen.py
3425${PYSITELIB}/sympy/solvers/tests/test_decompogen.pyc 3537${PYSITELIB}/sympy/solvers/tests/test_decompogen.pyc
3426${PYSITELIB}/sympy/solvers/tests/test_decompogen.pyo 3538${PYSITELIB}/sympy/solvers/tests/test_decompogen.pyo
3427${PYSITELIB}/sympy/solvers/tests/test_diophantine.py 
3428${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyc 
3429${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyo 
3430${PYSITELIB}/sympy/solvers/tests/test_inequalities.py 3539${PYSITELIB}/sympy/solvers/tests/test_inequalities.py
3431${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyc 3540${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyc
3432${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyo 3541${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyo
3433${PYSITELIB}/sympy/solvers/tests/test_numeric.py 3542${PYSITELIB}/sympy/solvers/tests/test_numeric.py
3434${PYSITELIB}/sympy/solvers/tests/test_numeric.pyc 3543${PYSITELIB}/sympy/solvers/tests/test_numeric.pyc
3435${PYSITELIB}/sympy/solvers/tests/test_numeric.pyo 3544${PYSITELIB}/sympy/solvers/tests/test_numeric.pyo
3436${PYSITELIB}/sympy/solvers/tests/test_ode.py 
3437${PYSITELIB}/sympy/solvers/tests/test_ode.pyc 
3438${PYSITELIB}/sympy/solvers/tests/test_ode.pyo 
3439${PYSITELIB}/sympy/solvers/tests/test_pde.py 3545${PYSITELIB}/sympy/solvers/tests/test_pde.py
3440${PYSITELIB}/sympy/solvers/tests/test_pde.pyc 3546${PYSITELIB}/sympy/solvers/tests/test_pde.pyc
3441${PYSITELIB}/sympy/solvers/tests/test_pde.pyo 3547${PYSITELIB}/sympy/solvers/tests/test_pde.pyo
3442${PYSITELIB}/sympy/solvers/tests/test_polysys.py 3548${PYSITELIB}/sympy/solvers/tests/test_polysys.py
3443${PYSITELIB}/sympy/solvers/tests/test_polysys.pyc 3549${PYSITELIB}/sympy/solvers/tests/test_polysys.pyc
3444${PYSITELIB}/sympy/solvers/tests/test_polysys.pyo 3550${PYSITELIB}/sympy/solvers/tests/test_polysys.pyo
3445${PYSITELIB}/sympy/solvers/tests/test_recurr.py 3551${PYSITELIB}/sympy/solvers/tests/test_recurr.py
3446${PYSITELIB}/sympy/solvers/tests/test_recurr.pyc 3552${PYSITELIB}/sympy/solvers/tests/test_recurr.pyc
3447${PYSITELIB}/sympy/solvers/tests/test_recurr.pyo 3553${PYSITELIB}/sympy/solvers/tests/test_recurr.pyo
3448${PYSITELIB}/sympy/solvers/tests/test_solvers.py 3554${PYSITELIB}/sympy/solvers/tests/test_solvers.py
3449${PYSITELIB}/sympy/solvers/tests/test_solvers.pyc 3555${PYSITELIB}/sympy/solvers/tests/test_solvers.pyc
3450${PYSITELIB}/sympy/solvers/tests/test_solvers.pyo 3556${PYSITELIB}/sympy/solvers/tests/test_solvers.pyo
3451${PYSITELIB}/sympy/solvers/tests/test_solveset.py 3557${PYSITELIB}/sympy/solvers/tests/test_solveset.py
@@ -3672,26 +3778,65 @@ ${PYSITELIB}/sympy/tensor/tests/test_ind @@ -3672,26 +3778,65 @@ ${PYSITELIB}/sympy/tensor/tests/test_ind
3672${PYSITELIB}/sympy/tensor/tests/test_indexed.pyo 3778${PYSITELIB}/sympy/tensor/tests/test_indexed.pyo
3673${PYSITELIB}/sympy/tensor/tests/test_tensor.py 3779${PYSITELIB}/sympy/tensor/tests/test_tensor.py
3674${PYSITELIB}/sympy/tensor/tests/test_tensor.pyc 3780${PYSITELIB}/sympy/tensor/tests/test_tensor.pyc
3675${PYSITELIB}/sympy/tensor/tests/test_tensor.pyo 3781${PYSITELIB}/sympy/tensor/tests/test_tensor.pyo
3676${PYSITELIB}/sympy/tensor/tests/test_tensor_element.py 3782${PYSITELIB}/sympy/tensor/tests/test_tensor_element.py
3677${PYSITELIB}/sympy/tensor/tests/test_tensor_element.pyc 3783${PYSITELIB}/sympy/tensor/tests/test_tensor_element.pyc
3678${PYSITELIB}/sympy/tensor/tests/test_tensor_element.pyo 3784${PYSITELIB}/sympy/tensor/tests/test_tensor_element.pyo
3679${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.py 3785${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.py
3680${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.pyc 3786${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.pyc
3681${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.pyo 3787${PYSITELIB}/sympy/tensor/tests/test_tensor_operators.pyo
3682${PYSITELIB}/sympy/tensor/toperators.py 3788${PYSITELIB}/sympy/tensor/toperators.py
3683${PYSITELIB}/sympy/tensor/toperators.pyc 3789${PYSITELIB}/sympy/tensor/toperators.pyc
3684${PYSITELIB}/sympy/tensor/toperators.pyo 3790${PYSITELIB}/sympy/tensor/toperators.pyo
 3791${PYSITELIB}/sympy/testing/__init__.py
 3792${PYSITELIB}/sympy/testing/__init__.pyc
 3793${PYSITELIB}/sympy/testing/__init__.pyo
 3794${PYSITELIB}/sympy/testing/benchmarking.py
 3795${PYSITELIB}/sympy/testing/benchmarking.pyc
 3796${PYSITELIB}/sympy/testing/benchmarking.pyo
 3797${PYSITELIB}/sympy/testing/matrices.py
 3798${PYSITELIB}/sympy/testing/matrices.pyc
 3799${PYSITELIB}/sympy/testing/matrices.pyo
 3800${PYSITELIB}/sympy/testing/pytest.py
 3801${PYSITELIB}/sympy/testing/pytest.pyc
 3802${PYSITELIB}/sympy/testing/pytest.pyo
 3803${PYSITELIB}/sympy/testing/quality_unicode.py
 3804${PYSITELIB}/sympy/testing/quality_unicode.pyc
 3805${PYSITELIB}/sympy/testing/quality_unicode.pyo
 3806${PYSITELIB}/sympy/testing/randtest.py
 3807${PYSITELIB}/sympy/testing/randtest.pyc
 3808${PYSITELIB}/sympy/testing/randtest.pyo
 3809${PYSITELIB}/sympy/testing/runtests.py
 3810${PYSITELIB}/sympy/testing/runtests.pyc
 3811${PYSITELIB}/sympy/testing/runtests.pyo
 3812${PYSITELIB}/sympy/testing/tests/__init__.py
 3813${PYSITELIB}/sympy/testing/tests/__init__.pyc
 3814${PYSITELIB}/sympy/testing/tests/__init__.pyo
 3815${PYSITELIB}/sympy/testing/tests/diagnose_imports.py
 3816${PYSITELIB}/sympy/testing/tests/diagnose_imports.pyc
 3817${PYSITELIB}/sympy/testing/tests/diagnose_imports.pyo
 3818${PYSITELIB}/sympy/testing/tests/test_code_quality.py
 3819${PYSITELIB}/sympy/testing/tests/test_code_quality.pyc
 3820${PYSITELIB}/sympy/testing/tests/test_code_quality.pyo
 3821${PYSITELIB}/sympy/testing/tests/test_module_imports.py
 3822${PYSITELIB}/sympy/testing/tests/test_module_imports.pyc
 3823${PYSITELIB}/sympy/testing/tests/test_module_imports.pyo
 3824${PYSITELIB}/sympy/testing/tests/test_pytest.py
 3825${PYSITELIB}/sympy/testing/tests/test_pytest.pyc
 3826${PYSITELIB}/sympy/testing/tests/test_pytest.pyo
 3827${PYSITELIB}/sympy/testing/tmpfiles.py
 3828${PYSITELIB}/sympy/testing/tmpfiles.pyc
 3829${PYSITELIB}/sympy/testing/tmpfiles.pyo
3685${PYSITELIB}/sympy/this.py 3830${PYSITELIB}/sympy/this.py
3686${PYSITELIB}/sympy/this.pyc 3831${PYSITELIB}/sympy/this.pyc
3687${PYSITELIB}/sympy/this.pyo 3832${PYSITELIB}/sympy/this.pyo
3688${PYSITELIB}/sympy/unify/__init__.py 3833${PYSITELIB}/sympy/unify/__init__.py
3689${PYSITELIB}/sympy/unify/__init__.pyc 3834${PYSITELIB}/sympy/unify/__init__.pyc
3690${PYSITELIB}/sympy/unify/__init__.pyo 3835${PYSITELIB}/sympy/unify/__init__.pyo
3691${PYSITELIB}/sympy/unify/core.py 3836${PYSITELIB}/sympy/unify/core.py
3692${PYSITELIB}/sympy/unify/core.pyc 3837${PYSITELIB}/sympy/unify/core.pyc
3693${PYSITELIB}/sympy/unify/core.pyo 3838${PYSITELIB}/sympy/unify/core.pyo
3694${PYSITELIB}/sympy/unify/rewrite.py 3839${PYSITELIB}/sympy/unify/rewrite.py
3695${PYSITELIB}/sympy/unify/rewrite.pyc 3840${PYSITELIB}/sympy/unify/rewrite.pyc
3696${PYSITELIB}/sympy/unify/rewrite.pyo 3841${PYSITELIB}/sympy/unify/rewrite.pyo
3697${PYSITELIB}/sympy/unify/tests/__init__.py 3842${PYSITELIB}/sympy/unify/tests/__init__.py
@@ -3786,71 +3931,62 @@ ${PYSITELIB}/sympy/utilities/quality_uni @@ -3786,71 +3931,62 @@ ${PYSITELIB}/sympy/utilities/quality_uni
3786${PYSITELIB}/sympy/utilities/quality_unicode.pyo 3931${PYSITELIB}/sympy/utilities/quality_unicode.pyo
3787${PYSITELIB}/sympy/utilities/randtest.py 3932${PYSITELIB}/sympy/utilities/randtest.py
3788${PYSITELIB}/sympy/utilities/randtest.pyc 3933${PYSITELIB}/sympy/utilities/randtest.pyc
3789${PYSITELIB}/sympy/utilities/randtest.pyo 3934${PYSITELIB}/sympy/utilities/randtest.pyo
3790${PYSITELIB}/sympy/utilities/runtests.py 3935${PYSITELIB}/sympy/utilities/runtests.py
3791${PYSITELIB}/sympy/utilities/runtests.pyc 3936${PYSITELIB}/sympy/utilities/runtests.pyc
3792${PYSITELIB}/sympy/utilities/runtests.pyo 3937${PYSITELIB}/sympy/utilities/runtests.pyo
3793${PYSITELIB}/sympy/utilities/source.py 3938${PYSITELIB}/sympy/utilities/source.py
3794${PYSITELIB}/sympy/utilities/source.pyc 3939${PYSITELIB}/sympy/utilities/source.pyc
3795${PYSITELIB}/sympy/utilities/source.pyo 3940${PYSITELIB}/sympy/utilities/source.pyo
3796${PYSITELIB}/sympy/utilities/tests/__init__.py 3941${PYSITELIB}/sympy/utilities/tests/__init__.py
3797${PYSITELIB}/sympy/utilities/tests/__init__.pyc 3942${PYSITELIB}/sympy/utilities/tests/__init__.pyc
3798${PYSITELIB}/sympy/utilities/tests/__init__.pyo 3943${PYSITELIB}/sympy/utilities/tests/__init__.pyo
3799${PYSITELIB}/sympy/utilities/tests/diagnose_imports.py 
3800${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyc 
3801${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyo 
3802${PYSITELIB}/sympy/utilities/tests/test_autowrap.py 3944${PYSITELIB}/sympy/utilities/tests/test_autowrap.py
3803${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc 3945${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc
3804${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyo 3946${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyo
3805${PYSITELIB}/sympy/utilities/tests/test_code_quality.py 
3806${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyc 
3807${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyo 
3808${PYSITELIB}/sympy/utilities/tests/test_codegen.py 3947${PYSITELIB}/sympy/utilities/tests/test_codegen.py
3809${PYSITELIB}/sympy/utilities/tests/test_codegen.pyc 3948${PYSITELIB}/sympy/utilities/tests/test_codegen.pyc
3810${PYSITELIB}/sympy/utilities/tests/test_codegen.pyo 3949${PYSITELIB}/sympy/utilities/tests/test_codegen.pyo
3811${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.py 3950${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.py
3812${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.pyc 3951${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.pyc
3813${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.pyo 3952${PYSITELIB}/sympy/utilities/tests/test_codegen_julia.pyo
3814${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.py 3953${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.py
3815${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.pyc 3954${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.pyc
3816${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.pyo 3955${PYSITELIB}/sympy/utilities/tests/test_codegen_octave.pyo
3817${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.py 3956${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.py
3818${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.pyc 3957${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.pyc
3819${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.pyo 3958${PYSITELIB}/sympy/utilities/tests/test_codegen_rust.pyo
3820${PYSITELIB}/sympy/utilities/tests/test_decorator.py 3959${PYSITELIB}/sympy/utilities/tests/test_decorator.py
3821${PYSITELIB}/sympy/utilities/tests/test_decorator.pyc 3960${PYSITELIB}/sympy/utilities/tests/test_decorator.pyc
3822${PYSITELIB}/sympy/utilities/tests/test_decorator.pyo 3961${PYSITELIB}/sympy/utilities/tests/test_decorator.pyo
 3962${PYSITELIB}/sympy/utilities/tests/test_deprecated.py
 3963${PYSITELIB}/sympy/utilities/tests/test_deprecated.pyc
 3964${PYSITELIB}/sympy/utilities/tests/test_deprecated.pyo
3823${PYSITELIB}/sympy/utilities/tests/test_enumerative.py 3965${PYSITELIB}/sympy/utilities/tests/test_enumerative.py
3824${PYSITELIB}/sympy/utilities/tests/test_enumerative.pyc 3966${PYSITELIB}/sympy/utilities/tests/test_enumerative.pyc
3825${PYSITELIB}/sympy/utilities/tests/test_enumerative.pyo 3967${PYSITELIB}/sympy/utilities/tests/test_enumerative.pyo
3826${PYSITELIB}/sympy/utilities/tests/test_iterables.py 3968${PYSITELIB}/sympy/utilities/tests/test_iterables.py
3827${PYSITELIB}/sympy/utilities/tests/test_iterables.pyc 3969${PYSITELIB}/sympy/utilities/tests/test_iterables.pyc
3828${PYSITELIB}/sympy/utilities/tests/test_iterables.pyo 3970${PYSITELIB}/sympy/utilities/tests/test_iterables.pyo
3829${PYSITELIB}/sympy/utilities/tests/test_lambdify.py 3971${PYSITELIB}/sympy/utilities/tests/test_lambdify.py
3830${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyc 3972${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyc
3831${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyo 3973${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyo
3832${PYSITELIB}/sympy/utilities/tests/test_misc.py 3974${PYSITELIB}/sympy/utilities/tests/test_misc.py
3833${PYSITELIB}/sympy/utilities/tests/test_misc.pyc 3975${PYSITELIB}/sympy/utilities/tests/test_misc.pyc
3834${PYSITELIB}/sympy/utilities/tests/test_misc.pyo 3976${PYSITELIB}/sympy/utilities/tests/test_misc.pyo
3835${PYSITELIB}/sympy/utilities/tests/test_module_imports.py 
3836${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyc 
3837${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyo 
3838${PYSITELIB}/sympy/utilities/tests/test_pickling.py 3977${PYSITELIB}/sympy/utilities/tests/test_pickling.py
3839${PYSITELIB}/sympy/utilities/tests/test_pickling.pyc 3978${PYSITELIB}/sympy/utilities/tests/test_pickling.pyc
3840${PYSITELIB}/sympy/utilities/tests/test_pickling.pyo 3979${PYSITELIB}/sympy/utilities/tests/test_pickling.pyo
3841${PYSITELIB}/sympy/utilities/tests/test_pytest.py 
3842${PYSITELIB}/sympy/utilities/tests/test_pytest.pyc 
3843${PYSITELIB}/sympy/utilities/tests/test_pytest.pyo 
3844${PYSITELIB}/sympy/utilities/tests/test_source.py 3980${PYSITELIB}/sympy/utilities/tests/test_source.py
3845${PYSITELIB}/sympy/utilities/tests/test_source.pyc 3981${PYSITELIB}/sympy/utilities/tests/test_source.pyc
3846${PYSITELIB}/sympy/utilities/tests/test_source.pyo 3982${PYSITELIB}/sympy/utilities/tests/test_source.pyo
3847${PYSITELIB}/sympy/utilities/tests/test_timeutils.py 3983${PYSITELIB}/sympy/utilities/tests/test_timeutils.py
3848${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyc 3984${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyc
3849${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyo 3985${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyo
3850${PYSITELIB}/sympy/utilities/tests/test_wester.py 3986${PYSITELIB}/sympy/utilities/tests/test_wester.py
3851${PYSITELIB}/sympy/utilities/tests/test_wester.pyc 3987${PYSITELIB}/sympy/utilities/tests/test_wester.pyc
3852${PYSITELIB}/sympy/utilities/tests/test_wester.pyo 3988${PYSITELIB}/sympy/utilities/tests/test_wester.pyo
3853${PYSITELIB}/sympy/utilities/timeutils.py 3989${PYSITELIB}/sympy/utilities/timeutils.py
3854${PYSITELIB}/sympy/utilities/timeutils.pyc 3990${PYSITELIB}/sympy/utilities/timeutils.pyc
3855${PYSITELIB}/sympy/utilities/timeutils.pyo 3991${PYSITELIB}/sympy/utilities/timeutils.pyo
3856${PYSITELIB}/sympy/utilities/tmpfiles.py 3992${PYSITELIB}/sympy/utilities/tmpfiles.py

cvs diff -r1.16 -r1.17 pkgsrc/math/py-sympy/distinfo (expand / switch to unified diff)

--- pkgsrc/math/py-sympy/distinfo 2020/01/31 04:51:40 1.16
+++ pkgsrc/math/py-sympy/distinfo 2020/09/20 14:30:01 1.17
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.16 2020/01/31 04:51:40 minskim Exp $ 1$NetBSD: distinfo,v 1.17 2020/09/20 14:30:01 ryoon Exp $
2 2
3SHA1 (sympy-1.5.1.tar.gz) = db5fee38fd64eeb708cba275cc8175f633de86b2 3SHA1 (sympy-1.6.2.tar.gz) = 17103fdd79d9437756457b08583248dfe6d6e95d
4RMD160 (sympy-1.5.1.tar.gz) = ea2680ccf760b469d393c72b5e1f585545231fbf 4RMD160 (sympy-1.6.2.tar.gz) = 26882aef86f3d21499d6a800c947e8d80f957f5a
5SHA512 (sympy-1.5.1.tar.gz) = 3e800f71842f8d719afb537c52854c9d41fb37dd9891c947c7c668affaffd058af67361f7b1ab747c12ad34947dab63fe3f96e57263028c84433493ee68378f1 5SHA512 (sympy-1.6.2.tar.gz) = 01b96a0d4912c217aa603d6b36e9e92a3dc5cacc38b14b1b9cc0b891115ed760e98d0263f16c6c9f4b41e86ed8faab34e4dbc0cd6fbe5cea44ae9fb58fffe843
6Size (sympy-1.5.1.tar.gz) = 6294719 bytes 6Size (sympy-1.6.2.tar.gz) = 6283481 bytes