pkgsrc/math/py-sympy/PLIST
wiz 32e59c4932 Update to 0.7.4.1:
0.7.4.1

These are the release notes for SymPy 0.7.4.1, which was released
on December 15, 2013.

This version of SymPy has been tested on Python 2.6, 2.7, 3.2, 3.3,
and PyPy.

This was a small bugfix release to fix an import issue on Windows
(https://github.com/sympy/sympy/issues/2681).

0.7.4

These are the release notes for SymPy 0.7.4, which was released on
December 9, 2013.

This version of SymPy has been tested on Python 2.6, 2.7, 3.2, 3.3,
and PyPy.
Major changes
Python 3

SymPy now uses a single code-base for Python 2 and Python 3.
Geometric Algebra

The internal representation of a multivector has been changes to
more fully use the inherent capabilities of SymPy. A multivector
is now represented by a linear combination of real commutative
SymPy expressions and a collection of non-commutative SymPy symbols.
Each non-commutative symbol represents a base in the geometric
algebra of an N-dimensional vector space. The total number of
non-commutative bases is 2**N - 1 (N of which are a basis for the
vector space) which when including scalars give a dimension for
the geometric algebra of 2**N. The different products of geometric
algebra are implemented as functions that take pairs of bases
symbols and return a multivector for each pair of bases.

The LaTeX printing module for multivectors has been rewritten to
simply extend the existing sympy LaTeX printing module and the
sympy LaTeX module is now used to print the bases coefficients in
the multivector representation instead of writing an entire LaTeX
printing module from scratch.

The main change in the geometric algebra module from the viewpoint
of the user is the inteface for the gradient operator and the
implementation of vector manifolds:

The gradient operator is now implemented as a special vector (the
user can name it grad if they wish) so the if F is a multivector
field all the operations of grad on F can be written grad*F, F*grad,
grad^F, F^grad, grad|F, F|grad, grad<F, F<grad, grad>F, and F>grad
where **, ^, |, <, and > are the geometric product, outer product,
inner product, left contraction, and right contraction, respectively.

The vector manifold is defined as a parametric vector field in an
embedding vector space. For example a surface in a 3-dimensional
space would be a vector field as a function of two parameters. Then
multivector fields can be defined on the manifold. The operations
available to be performed on these fields are directional derivative,
gradient, and projection. The weak point of the current manifold
representation is that all fields on the manifold are represented
in terms of the bases of the embedding vector space.
Classical Cryptography

Implements:

    Affine ciphers
    Vigenere ciphers
    Bifid ciphers
    Hill ciphers
    RSA and "kid RSA"
    linear feedback shift registers.

Common Subexpression Elimination (CSE)

Major changes have been done in cse internals resulting in a big
speedup for larger expressions. Some changes reflect on the user
side:

    Adds and Muls are now recursively matched ([w*x, w*x*y, w*x*y*z]
    ǹow turns into [(x0, w*x), (x1, x0*y)], [x0, x1, x1*z])
    CSE is now not performed on the non-commutative parts of
    multiplications (it avoids some bugs).
    Pre and post optimizations are not performed by default anymore.
    The optimizations parameter still exists and optimizations='basic'
    can be used to apply previous default optimizations. These
    optimizations could really slow down cse on larger expressions
    and are no guarantee of better results.
    An order parameter has been introduced to control whether Adds
    and Muls terms are ordered independently of hashing implementation.
    The default order='canonical' will independently order the
    terms. order='none' will not do any ordering (hashes order is
    used) and will represent a major performance improvement for
    really huge expressions.
    In general, the output of cse will be slightly different from
    the previous implementation.

Diophantine Equation Module

This is a new addition to SymPy as a result of a GSoC project. With
the current release, following five types of equations are supported.

    Linear Diophantine equation, a_{1}x_{1} + a_{2}x_{2} + . . .
    + a_{n}x_{n} = b
    General binary quadratic equation, ax^2 + bxy + cy^2 + dx + ey
    + f = 0
    Homogeneous ternary quadratic equation, ax^2 + by^2 + cz^2 +
    dxy + eyz + fzx = 0
    Extended Pythagorean equation, a_{1}x_{1}^2 + a_{2}x_{2}^2 +
    . . . + a_{n}x_{n}^2 = a_{n+1}x_{n+1}^2
    General sum of squares, x_{1}^2 + x_{2}^2 + . . . + x_{n}^2 =
    k

Unification of Sum, Product, and Integral classes

A new superclass has been introduced to unify the treatments of
indexed expressions, such as Sum, Product, and Integral. This
enforced common behavior accross the objects, and provides more
robust support for a number of operations. For example, Sums and
Integrals can now be factored or expanded. S.subs() can be used to
substitute for expressions inside a Sum/Integral/Product that are
independent of the index variables, including unknown functions,
for instance, Integral(f(x), (x, 1, 3)).subs(f(x), x**2), while
Sum.change_index() or Integral.transform are now used for other
changes of summation or integration variables. Support for finite
and infinite sequence products has also been restored.

In addition there were a number of fixes to the evaluation of nested
sums and sums involving Kronecker delta functions, see issue 3924
and issue 3987.
Series

    The Order object used to represent the growth of a function in
    series expansions as a variable tend to zero can now also
    represent growth as a variable tend to infinity. This also
    fixed a number of issues with limits. See issue 234 and issue
    2670.

    Division by Order is disallowed, see issue 1756.

    Addition of Order object is now commutative, see issue 1180.

Physics

    Initial work on gamma matrices, depending on the tensor module.

Logic

    New objects true and false which are Basic versions of the
    Python builtins True and False.

Other

    Arbitrary comparisons between expressions (like x < y) no longer
    have a boolean truth value. This means code like if x < y or
    sorted(exprs) will raise TypeError if x < y is symbolic. A
    typical fix of the former is if (x < y) is True (assuming the
    if block should be skipped if x < y is symbolic), and of the
    latter is sorted(exprs, key=default_sort_key), which will order
    the expressions in an arbitrary, but consistent way, even across
    platforms and Python versions. See issue 2832.

    Arbitrary comparisons between complex numbers (for example, I
    > 1) now raise TypeError as well (see PR #2510).

    minpoly now works with algebraic functions, like minpoly(sqrt(x)
    + sqrt(x + 1), y).

    exp can now act on any matrix, even those which are not
    diagonalizable. It is also more comfortable to call it, exp(m)
    instead of just m.exp(), as was required previously.

    sympify now has an option evaluate=False that will not
    automatically simplify expressions like x+x.

    Deep processing of cancel and simplify functions. simplify is
    now recursive through the expression tree. See e.g. issue 3923.

    Improved the modularity of the codebase for potential subclasses,
    see issue 3652.

    The SymPy cheatsheet was cleaned up.

Backwards compatibility breaks and deprecations

    Removed deprecated Real class and is_Real property of Basic,
    see issue 1721.
    Removed deprecated 'each_char' option for symbols(), see issue
    1919.
    The viewer="StringIO" option to preview() has been deprecated.
    Use viewer="BytesIO" instead. See issue 3984.
    TransformationSet has been renamed to ImageSet. Added public
    facing imageset function.


0.7.3

These are the release notes for SymPy 0.7.3, which was released on
July 13, 2013. It can be downloaded from
https://github.com/sympy/sympy/releases/tag/sympy-0.7.3.

This version of SymPy has been tested on Python 2.5, 2.6, 2.7, 3.2,
3.3, and PyPy.
Major changes
Integration

This release includes Risch integration algorithm from Aaron Meurer's
2010 Google Summer of Code project. This makes integrate much more
powerful and much faster for the supported functions. The algorithm
is called automatically from integrate(). For now, only transcendental
elementary functions containing exp or log are supported. To access
the algorithm directly, use integrate(expr, x, risch=True). The
algorithm has the ability to prove that integrals are nonelementary.
To determine if a function is nonelementary, integrate using
risch=True. If the resulting Integral class is an instance of
NonElementaryIntegral, then it is not elementary (otherwise, that
part of the algorithm has just not been implemented yet).

Here is an example integral that could not be computed before:

>>> f = x*(x + 1)*(2*x*(x - (2*x**3 + 2*x**2 + x + 1)*log(x +
1))*exp(3*x**2) + (x**2*exp(2*x**2) - log(x + 1)**2)**2)/((x +
1)*log(x + 1)**2 - (x**3 + x**2)*exp(2*x**2))**2
>>> integrate(f, x)
x + x*exp(x**2)*log(x + 1)/(x**2*exp(2*x**2) - log(x + 1)**2) -
log(x + 1) - log(exp(x**2) - log(x + 1)/x)/2 + log(exp(x**2) +
log(x + 1)/x)/2

ODE

    Built basic infrastructure of the PDE module (PR #1970)

Theano Interaction

SymPy expressions can now be translated into Theano expressions
for numeric evaluation. This includes most standard scalar operations
(e.g. sin, exp, gamma, but not beta or MeijerG) and matrices. This
system generally outperforms lambdify and autowrap but does require
Theano to be installed.
Matrix Expressions
Assumptions

Matrix expressions now support inference using the new assumptions
system. New predicates include invertible, symmetric, positive_definite,
orthogonal, ....
New Operators

New operators include Adjoint, HadamardProduct, Determinant,
MatrixSlice, DFT. Also, preliminary support exists for factorizations
like SVD and LU.
Context manager for New Assumptions

Added the with assuming(*facts) context manager for new assumptions.
See blogpost
Backwards compatibility breaks and deprecations

    This is the last version of SymPy to support Python 2.5.

    The IPython extension, i.e., %load_ext
    sympy.interactive.ipythonprinting is deprecated. Use from sympy
    import init_printing; init_printing() instead. See issue 3914.

    The viewer='file' option to preview without a file name is
    deprecated. Use filename='name' in addition to viewer='file'.
    See issue 3919.

    The deprecated syntax Symbol('x', dummy=True), which had been
    deprecated since 0.7.0, has been removed. Use Dummy('x') or
    symbols('x', cls=Dummy) instead. See issue 3378.

    The deprecated Expr methods as_coeff_terms and as_coeff_factors,
    which have been deprecated in favor of as_coeff_mul and
    as_coeff_add, respectively (see also as_coeff_Mul and as_coeff_Add),
    were removed. The methods had been deprecated since SymPy 0.7.0.
    See issue 3377.

    The spherical harmonics have been completely rewritten. See PR
    #1510.

Minor changes
Solvers

    Added enhancements and improved the methods of solving exact
    differential equation ((PR #1955)) and ((PR #1823))
    Support for differential equations with linear coefficients
    and those that can be reduced to separable and linear form ((PR
    #1940), (PR #1864), (PR #1883))
    Support for first order linear general PDE's with constant
    coefficients ((PR #2109))
    Return all found independent solutions for underdetermined
    systems.
    Handle recursive problems for which y(0) = 0.
    Handle matrix equations.

Integration

    integrate will split out integrals into Piecewise expressions
    when conditions must hold for the answer to be true. For example,
    integrate(x**n, x) now gives Piecewise((log(x), Eq(n, -1),
    (x**(n + 1)/(n + 1), True)) (previously it just gave x**(n +
    1)/(n + 1))
    Calculate Gauss-Legendre and Gauss-Laguerre points and weights
    (PR #1497)
    Various new error and inverse error functions (PR #1703)
    Use in heurisch for more symmetric and nicer results
    Gruntz for expintegrals and all new erf*
    Li, li logarithmic integrals (PR #1708)
    Integration of li/Li by heurisch (PR #1712)
    elliptic integrals, complete and incomplete
    Integration of complete elliptic integrals by meijerg
    Integration of Piecewise with symbolic conditions.
    Fixed many wrong results of DiracDelta integrals.

Logic

    Addition of SOPform and POSform functions to sympy.logic to
    generate boolean expressions from truth tables.
    Addition of simplify_logic function and enabling simplify() to
    reduce logic expressions to their simplest forms.
    Addition of bool_equals function to check equality of boolean
    expressions and return a mapping of variables from one expr to
    other that leads to the equality.
    Addition of disjunctive normal form methods - to_dnf, is_dnf

Others

    gmpy version 2 is now supported
    Added is_algebraic_expr() method (PR #2176)
    Many improvements to the handling of noncommutative symbols:
	Better support in simplification functions, e.g. factor,
	trigsimp
	Better integration with Order()
	Better pattern matching
    Improved pattern matching including matching the identity.
    normalizes Jacobi polynomials
    Quadrature rules for orthogonal polynomials in arbitrary
    precision (hermite, laguerre, legendre, gen_legendre, jacobi)
    summation of harmonic numbers
    Many improvements of the polygamma functions
    evaluation at special arguments
    Connections to harmonic numbers
    structured full partial fraction decomposition (mainly interesting
    for developers)
    besselsimp improvements
    Karr summation convention
    New spherical harmonics
    improved minimal_polynomial using composition of algebraic
    numbers (PR #2038)
    faster integer polynomial factorization (PR #2148)
    Euler-Descartes method for quartic equations (PR #1947)
    algebraic operations on tensors (PR #1700)
    tensor canonicalization (PR #1644)
    Handle the simplification of summations and products over a
    KroneckerDelta.
    Implemented LaTeX printing of DiracDelta, Heaviside, KroneckerDelta
    and LeviCivita, also many Matrix expressions.
    Improved LaTeX printing of fractions, Mul in general.
    IPython integration and printing issues have been ironed out.
    Stats now supports discrete distributions (e.g. Poisson) by
    relying on Summation objects
    Added DOT printing for visualization of expression trees
    Added information about solvability and nilpotency of named
    groups.
2014-01-21 08:38:04 +00:00

2692 lines
127 KiB
Text

@comment $NetBSD: PLIST,v 1.9 2014/01/21 08:38:04 wiz Exp $
bin/isympy${PYVERSSUFFIX}
${PYSITELIB}/${EGG_FILE}
${PYSITELIB}/sympy/__init__.py
${PYSITELIB}/sympy/__init__.pyc
${PYSITELIB}/sympy/__init__.pyo
${PYSITELIB}/sympy/abc.py
${PYSITELIB}/sympy/abc.pyc
${PYSITELIB}/sympy/abc.pyo
${PYSITELIB}/sympy/assumptions/__init__.py
${PYSITELIB}/sympy/assumptions/__init__.pyc
${PYSITELIB}/sympy/assumptions/__init__.pyo
${PYSITELIB}/sympy/assumptions/ask.py
${PYSITELIB}/sympy/assumptions/ask.pyc
${PYSITELIB}/sympy/assumptions/ask.pyo
${PYSITELIB}/sympy/assumptions/ask_generated.py
${PYSITELIB}/sympy/assumptions/ask_generated.pyc
${PYSITELIB}/sympy/assumptions/ask_generated.pyo
${PYSITELIB}/sympy/assumptions/assume.py
${PYSITELIB}/sympy/assumptions/assume.pyc
${PYSITELIB}/sympy/assumptions/assume.pyo
${PYSITELIB}/sympy/assumptions/handlers/__init__.py
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyc
${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo
${PYSITELIB}/sympy/assumptions/handlers/calculus.py
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyc
${PYSITELIB}/sympy/assumptions/handlers/calculus.pyo
${PYSITELIB}/sympy/assumptions/handlers/common.py
${PYSITELIB}/sympy/assumptions/handlers/common.pyc
${PYSITELIB}/sympy/assumptions/handlers/common.pyo
${PYSITELIB}/sympy/assumptions/handlers/matrices.py
${PYSITELIB}/sympy/assumptions/handlers/matrices.pyc
${PYSITELIB}/sympy/assumptions/handlers/matrices.pyo
${PYSITELIB}/sympy/assumptions/handlers/ntheory.py
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyc
${PYSITELIB}/sympy/assumptions/handlers/ntheory.pyo
${PYSITELIB}/sympy/assumptions/handlers/order.py
${PYSITELIB}/sympy/assumptions/handlers/order.pyc
${PYSITELIB}/sympy/assumptions/handlers/order.pyo
${PYSITELIB}/sympy/assumptions/handlers/sets.py
${PYSITELIB}/sympy/assumptions/handlers/sets.pyc
${PYSITELIB}/sympy/assumptions/handlers/sets.pyo
${PYSITELIB}/sympy/assumptions/refine.py
${PYSITELIB}/sympy/assumptions/refine.pyc
${PYSITELIB}/sympy/assumptions/refine.pyo
${PYSITELIB}/sympy/assumptions/tests/__init__.py
${PYSITELIB}/sympy/assumptions/tests/__init__.pyc
${PYSITELIB}/sympy/assumptions/tests/__init__.pyo
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.py
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyc
${PYSITELIB}/sympy/assumptions/tests/test_assumptions_2.pyo
${PYSITELIB}/sympy/assumptions/tests/test_context.py
${PYSITELIB}/sympy/assumptions/tests/test_context.pyc
${PYSITELIB}/sympy/assumptions/tests/test_context.pyo
${PYSITELIB}/sympy/assumptions/tests/test_matrices.py
${PYSITELIB}/sympy/assumptions/tests/test_matrices.pyc
${PYSITELIB}/sympy/assumptions/tests/test_matrices.pyo
${PYSITELIB}/sympy/assumptions/tests/test_query.py
${PYSITELIB}/sympy/assumptions/tests/test_query.pyc
${PYSITELIB}/sympy/assumptions/tests/test_query.pyo
${PYSITELIB}/sympy/assumptions/tests/test_refine.py
${PYSITELIB}/sympy/assumptions/tests/test_refine.pyc
${PYSITELIB}/sympy/assumptions/tests/test_refine.pyo
${PYSITELIB}/sympy/categories/__init__.py
${PYSITELIB}/sympy/categories/__init__.pyc
${PYSITELIB}/sympy/categories/__init__.pyo
${PYSITELIB}/sympy/categories/baseclasses.py
${PYSITELIB}/sympy/categories/baseclasses.pyc
${PYSITELIB}/sympy/categories/baseclasses.pyo
${PYSITELIB}/sympy/categories/diagram_drawing.py
${PYSITELIB}/sympy/categories/diagram_drawing.pyc
${PYSITELIB}/sympy/categories/diagram_drawing.pyo
${PYSITELIB}/sympy/categories/tests/__init__.py
${PYSITELIB}/sympy/categories/tests/__init__.pyc
${PYSITELIB}/sympy/categories/tests/__init__.pyo
${PYSITELIB}/sympy/categories/tests/test_baseclasses.py
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyc
${PYSITELIB}/sympy/categories/tests/test_baseclasses.pyo
${PYSITELIB}/sympy/categories/tests/test_drawing.py
${PYSITELIB}/sympy/categories/tests/test_drawing.pyc
${PYSITELIB}/sympy/categories/tests/test_drawing.pyo
${PYSITELIB}/sympy/combinatorics/__init__.py
${PYSITELIB}/sympy/combinatorics/__init__.pyc
${PYSITELIB}/sympy/combinatorics/__init__.pyo
${PYSITELIB}/sympy/combinatorics/generators.py
${PYSITELIB}/sympy/combinatorics/generators.pyc
${PYSITELIB}/sympy/combinatorics/generators.pyo
${PYSITELIB}/sympy/combinatorics/graycode.py
${PYSITELIB}/sympy/combinatorics/graycode.pyc
${PYSITELIB}/sympy/combinatorics/graycode.pyo
${PYSITELIB}/sympy/combinatorics/group_constructs.py
${PYSITELIB}/sympy/combinatorics/group_constructs.pyc
${PYSITELIB}/sympy/combinatorics/group_constructs.pyo
${PYSITELIB}/sympy/combinatorics/named_groups.py
${PYSITELIB}/sympy/combinatorics/named_groups.pyc
${PYSITELIB}/sympy/combinatorics/named_groups.pyo
${PYSITELIB}/sympy/combinatorics/partitions.py
${PYSITELIB}/sympy/combinatorics/partitions.pyc
${PYSITELIB}/sympy/combinatorics/partitions.pyo
${PYSITELIB}/sympy/combinatorics/perm_groups.py
${PYSITELIB}/sympy/combinatorics/perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/perm_groups.pyo
${PYSITELIB}/sympy/combinatorics/permutations.py
${PYSITELIB}/sympy/combinatorics/permutations.pyc
${PYSITELIB}/sympy/combinatorics/permutations.pyo
${PYSITELIB}/sympy/combinatorics/polyhedron.py
${PYSITELIB}/sympy/combinatorics/polyhedron.pyc
${PYSITELIB}/sympy/combinatorics/polyhedron.pyo
${PYSITELIB}/sympy/combinatorics/prufer.py
${PYSITELIB}/sympy/combinatorics/prufer.pyc
${PYSITELIB}/sympy/combinatorics/prufer.pyo
${PYSITELIB}/sympy/combinatorics/subsets.py
${PYSITELIB}/sympy/combinatorics/subsets.pyc
${PYSITELIB}/sympy/combinatorics/subsets.pyo
${PYSITELIB}/sympy/combinatorics/tensor_can.py
${PYSITELIB}/sympy/combinatorics/tensor_can.pyc
${PYSITELIB}/sympy/combinatorics/tensor_can.pyo
${PYSITELIB}/sympy/combinatorics/tests/__init__.py
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyc
${PYSITELIB}/sympy/combinatorics/tests/__init__.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_generators.py
${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_generators.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.py
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.py
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.py
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.py
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_subsets.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.py
${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_tensor_can.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.py
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_testutil.pyo
${PYSITELIB}/sympy/combinatorics/tests/test_util.py
${PYSITELIB}/sympy/combinatorics/tests/test_util.pyc
${PYSITELIB}/sympy/combinatorics/tests/test_util.pyo
${PYSITELIB}/sympy/combinatorics/testutil.py
${PYSITELIB}/sympy/combinatorics/testutil.pyc
${PYSITELIB}/sympy/combinatorics/testutil.pyo
${PYSITELIB}/sympy/combinatorics/util.py
${PYSITELIB}/sympy/combinatorics/util.pyc
${PYSITELIB}/sympy/combinatorics/util.pyo
${PYSITELIB}/sympy/concrete/__init__.py
${PYSITELIB}/sympy/concrete/__init__.pyc
${PYSITELIB}/sympy/concrete/__init__.pyo
${PYSITELIB}/sympy/concrete/delta.py
${PYSITELIB}/sympy/concrete/delta.pyc
${PYSITELIB}/sympy/concrete/delta.pyo
${PYSITELIB}/sympy/concrete/expr_with_intlimits.py
${PYSITELIB}/sympy/concrete/expr_with_intlimits.pyc
${PYSITELIB}/sympy/concrete/expr_with_intlimits.pyo
${PYSITELIB}/sympy/concrete/expr_with_limits.py
${PYSITELIB}/sympy/concrete/expr_with_limits.pyc
${PYSITELIB}/sympy/concrete/expr_with_limits.pyo
${PYSITELIB}/sympy/concrete/gosper.py
${PYSITELIB}/sympy/concrete/gosper.pyc
${PYSITELIB}/sympy/concrete/gosper.pyo
${PYSITELIB}/sympy/concrete/products.py
${PYSITELIB}/sympy/concrete/products.pyc
${PYSITELIB}/sympy/concrete/products.pyo
${PYSITELIB}/sympy/concrete/summations.py
${PYSITELIB}/sympy/concrete/summations.pyc
${PYSITELIB}/sympy/concrete/summations.pyo
${PYSITELIB}/sympy/concrete/tests/__init__.py
${PYSITELIB}/sympy/concrete/tests/__init__.pyc
${PYSITELIB}/sympy/concrete/tests/__init__.pyo
${PYSITELIB}/sympy/concrete/tests/test_delta.py
${PYSITELIB}/sympy/concrete/tests/test_delta.pyc
${PYSITELIB}/sympy/concrete/tests/test_delta.pyo
${PYSITELIB}/sympy/concrete/tests/test_gosper.py
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyc
${PYSITELIB}/sympy/concrete/tests/test_gosper.pyo
${PYSITELIB}/sympy/concrete/tests/test_products.py
${PYSITELIB}/sympy/concrete/tests/test_products.pyc
${PYSITELIB}/sympy/concrete/tests/test_products.pyo
${PYSITELIB}/sympy/concrete/tests/test_sums_products.py
${PYSITELIB}/sympy/concrete/tests/test_sums_products.pyc
${PYSITELIB}/sympy/concrete/tests/test_sums_products.pyo
${PYSITELIB}/sympy/conftest.py
${PYSITELIB}/sympy/conftest.pyc
${PYSITELIB}/sympy/conftest.pyo
${PYSITELIB}/sympy/core/__init__.py
${PYSITELIB}/sympy/core/__init__.pyc
${PYSITELIB}/sympy/core/__init__.pyo
${PYSITELIB}/sympy/core/add.py
${PYSITELIB}/sympy/core/add.pyc
${PYSITELIB}/sympy/core/add.pyo
${PYSITELIB}/sympy/core/alphabets.py
${PYSITELIB}/sympy/core/alphabets.pyc
${PYSITELIB}/sympy/core/alphabets.pyo
${PYSITELIB}/sympy/core/assumptions.py
${PYSITELIB}/sympy/core/assumptions.pyc
${PYSITELIB}/sympy/core/assumptions.pyo
${PYSITELIB}/sympy/core/basic.py
${PYSITELIB}/sympy/core/basic.pyc
${PYSITELIB}/sympy/core/basic.pyo
${PYSITELIB}/sympy/core/cache.py
${PYSITELIB}/sympy/core/cache.pyc
${PYSITELIB}/sympy/core/cache.pyo
${PYSITELIB}/sympy/core/compatibility.py
${PYSITELIB}/sympy/core/compatibility.pyc
${PYSITELIB}/sympy/core/compatibility.pyo
${PYSITELIB}/sympy/core/containers.py
${PYSITELIB}/sympy/core/containers.pyc
${PYSITELIB}/sympy/core/containers.pyo
${PYSITELIB}/sympy/core/core.py
${PYSITELIB}/sympy/core/core.pyc
${PYSITELIB}/sympy/core/core.pyo
${PYSITELIB}/sympy/core/coreerrors.py
${PYSITELIB}/sympy/core/coreerrors.pyc
${PYSITELIB}/sympy/core/coreerrors.pyo
${PYSITELIB}/sympy/core/decorators.py
${PYSITELIB}/sympy/core/decorators.pyc
${PYSITELIB}/sympy/core/decorators.pyo
${PYSITELIB}/sympy/core/evalf.py
${PYSITELIB}/sympy/core/evalf.pyc
${PYSITELIB}/sympy/core/evalf.pyo
${PYSITELIB}/sympy/core/expr.py
${PYSITELIB}/sympy/core/expr.pyc
${PYSITELIB}/sympy/core/expr.pyo
${PYSITELIB}/sympy/core/exprtools.py
${PYSITELIB}/sympy/core/exprtools.pyc
${PYSITELIB}/sympy/core/exprtools.pyo
${PYSITELIB}/sympy/core/facts.py
${PYSITELIB}/sympy/core/facts.pyc
${PYSITELIB}/sympy/core/facts.pyo
${PYSITELIB}/sympy/core/function.py
${PYSITELIB}/sympy/core/function.pyc
${PYSITELIB}/sympy/core/function.pyo
${PYSITELIB}/sympy/core/logic.py
${PYSITELIB}/sympy/core/logic.pyc
${PYSITELIB}/sympy/core/logic.pyo
${PYSITELIB}/sympy/core/mod.py
${PYSITELIB}/sympy/core/mod.pyc
${PYSITELIB}/sympy/core/mod.pyo
${PYSITELIB}/sympy/core/mul.py
${PYSITELIB}/sympy/core/mul.pyc
${PYSITELIB}/sympy/core/mul.pyo
${PYSITELIB}/sympy/core/multidimensional.py
${PYSITELIB}/sympy/core/multidimensional.pyc
${PYSITELIB}/sympy/core/multidimensional.pyo
${PYSITELIB}/sympy/core/numbers.py
${PYSITELIB}/sympy/core/numbers.pyc
${PYSITELIB}/sympy/core/numbers.pyo
${PYSITELIB}/sympy/core/operations.py
${PYSITELIB}/sympy/core/operations.pyc
${PYSITELIB}/sympy/core/operations.pyo
${PYSITELIB}/sympy/core/power.py
${PYSITELIB}/sympy/core/power.pyc
${PYSITELIB}/sympy/core/power.pyo
${PYSITELIB}/sympy/core/relational.py
${PYSITELIB}/sympy/core/relational.pyc
${PYSITELIB}/sympy/core/relational.pyo
${PYSITELIB}/sympy/core/rules.py
${PYSITELIB}/sympy/core/rules.pyc
${PYSITELIB}/sympy/core/rules.pyo
${PYSITELIB}/sympy/core/sets.py
${PYSITELIB}/sympy/core/sets.pyc
${PYSITELIB}/sympy/core/sets.pyo
${PYSITELIB}/sympy/core/singleton.py
${PYSITELIB}/sympy/core/singleton.pyc
${PYSITELIB}/sympy/core/singleton.pyo
${PYSITELIB}/sympy/core/symbol.py
${PYSITELIB}/sympy/core/symbol.pyc
${PYSITELIB}/sympy/core/symbol.pyo
${PYSITELIB}/sympy/core/sympify.py
${PYSITELIB}/sympy/core/sympify.pyc
${PYSITELIB}/sympy/core/sympify.pyo
${PYSITELIB}/sympy/core/tests/__init__.py
${PYSITELIB}/sympy/core/tests/__init__.pyc
${PYSITELIB}/sympy/core/tests/__init__.pyo
${PYSITELIB}/sympy/core/tests/test_args.py
${PYSITELIB}/sympy/core/tests/test_args.pyc
${PYSITELIB}/sympy/core/tests/test_args.pyo
${PYSITELIB}/sympy/core/tests/test_arit.py
${PYSITELIB}/sympy/core/tests/test_arit.pyc
${PYSITELIB}/sympy/core/tests/test_arit.pyo
${PYSITELIB}/sympy/core/tests/test_assumptions.py
${PYSITELIB}/sympy/core/tests/test_assumptions.pyc
${PYSITELIB}/sympy/core/tests/test_assumptions.pyo
${PYSITELIB}/sympy/core/tests/test_basic.py
${PYSITELIB}/sympy/core/tests/test_basic.pyc
${PYSITELIB}/sympy/core/tests/test_basic.pyo
${PYSITELIB}/sympy/core/tests/test_cache.py
${PYSITELIB}/sympy/core/tests/test_cache.pyc
${PYSITELIB}/sympy/core/tests/test_cache.pyo
${PYSITELIB}/sympy/core/tests/test_compatibility.py
${PYSITELIB}/sympy/core/tests/test_compatibility.pyc
${PYSITELIB}/sympy/core/tests/test_compatibility.pyo
${PYSITELIB}/sympy/core/tests/test_complex.py
${PYSITELIB}/sympy/core/tests/test_complex.pyc
${PYSITELIB}/sympy/core/tests/test_complex.pyo
${PYSITELIB}/sympy/core/tests/test_containers.py
${PYSITELIB}/sympy/core/tests/test_containers.pyc
${PYSITELIB}/sympy/core/tests/test_containers.pyo
${PYSITELIB}/sympy/core/tests/test_count_ops.py
${PYSITELIB}/sympy/core/tests/test_count_ops.pyc
${PYSITELIB}/sympy/core/tests/test_count_ops.pyo
${PYSITELIB}/sympy/core/tests/test_diff.py
${PYSITELIB}/sympy/core/tests/test_diff.pyc
${PYSITELIB}/sympy/core/tests/test_diff.pyo
${PYSITELIB}/sympy/core/tests/test_equal.py
${PYSITELIB}/sympy/core/tests/test_equal.pyc
${PYSITELIB}/sympy/core/tests/test_equal.pyo
${PYSITELIB}/sympy/core/tests/test_eval.py
${PYSITELIB}/sympy/core/tests/test_eval.pyc
${PYSITELIB}/sympy/core/tests/test_eval.pyo
${PYSITELIB}/sympy/core/tests/test_eval_power.py
${PYSITELIB}/sympy/core/tests/test_eval_power.pyc
${PYSITELIB}/sympy/core/tests/test_eval_power.pyo
${PYSITELIB}/sympy/core/tests/test_evalf.py
${PYSITELIB}/sympy/core/tests/test_evalf.pyc
${PYSITELIB}/sympy/core/tests/test_evalf.pyo
${PYSITELIB}/sympy/core/tests/test_expand.py
${PYSITELIB}/sympy/core/tests/test_expand.pyc
${PYSITELIB}/sympy/core/tests/test_expand.pyo
${PYSITELIB}/sympy/core/tests/test_expr.py
${PYSITELIB}/sympy/core/tests/test_expr.pyc
${PYSITELIB}/sympy/core/tests/test_expr.pyo
${PYSITELIB}/sympy/core/tests/test_exprtools.py
${PYSITELIB}/sympy/core/tests/test_exprtools.pyc
${PYSITELIB}/sympy/core/tests/test_exprtools.pyo
${PYSITELIB}/sympy/core/tests/test_facts.py
${PYSITELIB}/sympy/core/tests/test_facts.pyc
${PYSITELIB}/sympy/core/tests/test_facts.pyo
${PYSITELIB}/sympy/core/tests/test_function.py
${PYSITELIB}/sympy/core/tests/test_function.pyc
${PYSITELIB}/sympy/core/tests/test_function.pyo
${PYSITELIB}/sympy/core/tests/test_logic.py
${PYSITELIB}/sympy/core/tests/test_logic.pyc
${PYSITELIB}/sympy/core/tests/test_logic.pyo
${PYSITELIB}/sympy/core/tests/test_match.py
${PYSITELIB}/sympy/core/tests/test_match.pyc
${PYSITELIB}/sympy/core/tests/test_match.pyo
${PYSITELIB}/sympy/core/tests/test_noncommutative.py
${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc
${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo
${PYSITELIB}/sympy/core/tests/test_numbers.py
${PYSITELIB}/sympy/core/tests/test_numbers.pyc
${PYSITELIB}/sympy/core/tests/test_numbers.pyo
${PYSITELIB}/sympy/core/tests/test_operations.py
${PYSITELIB}/sympy/core/tests/test_operations.pyc
${PYSITELIB}/sympy/core/tests/test_operations.pyo
${PYSITELIB}/sympy/core/tests/test_priority.py
${PYSITELIB}/sympy/core/tests/test_priority.pyc
${PYSITELIB}/sympy/core/tests/test_priority.pyo
${PYSITELIB}/sympy/core/tests/test_relational.py
${PYSITELIB}/sympy/core/tests/test_relational.pyc
${PYSITELIB}/sympy/core/tests/test_relational.pyo
${PYSITELIB}/sympy/core/tests/test_rules.py
${PYSITELIB}/sympy/core/tests/test_rules.pyc
${PYSITELIB}/sympy/core/tests/test_rules.pyo
${PYSITELIB}/sympy/core/tests/test_sets.py
${PYSITELIB}/sympy/core/tests/test_sets.pyc
${PYSITELIB}/sympy/core/tests/test_sets.pyo
${PYSITELIB}/sympy/core/tests/test_subs.py
${PYSITELIB}/sympy/core/tests/test_subs.pyc
${PYSITELIB}/sympy/core/tests/test_subs.pyo
${PYSITELIB}/sympy/core/tests/test_symbol.py
${PYSITELIB}/sympy/core/tests/test_symbol.pyc
${PYSITELIB}/sympy/core/tests/test_symbol.pyo
${PYSITELIB}/sympy/core/tests/test_sympify.py
${PYSITELIB}/sympy/core/tests/test_sympify.pyc
${PYSITELIB}/sympy/core/tests/test_sympify.pyo
${PYSITELIB}/sympy/core/tests/test_trace.py
${PYSITELIB}/sympy/core/tests/test_trace.pyc
${PYSITELIB}/sympy/core/tests/test_trace.pyo
${PYSITELIB}/sympy/core/tests/test_truediv.py
${PYSITELIB}/sympy/core/tests/test_truediv.pyc
${PYSITELIB}/sympy/core/tests/test_truediv.pyo
${PYSITELIB}/sympy/core/tests/test_var.py
${PYSITELIB}/sympy/core/tests/test_var.pyc
${PYSITELIB}/sympy/core/tests/test_var.pyo
${PYSITELIB}/sympy/core/tests/test_wester.py
${PYSITELIB}/sympy/core/tests/test_wester.pyc
${PYSITELIB}/sympy/core/tests/test_wester.pyo
${PYSITELIB}/sympy/core/trace.py
${PYSITELIB}/sympy/core/trace.pyc
${PYSITELIB}/sympy/core/trace.pyo
${PYSITELIB}/sympy/crypto/__init__.py
${PYSITELIB}/sympy/crypto/__init__.pyc
${PYSITELIB}/sympy/crypto/__init__.pyo
${PYSITELIB}/sympy/crypto/crypto.py
${PYSITELIB}/sympy/crypto/crypto.pyc
${PYSITELIB}/sympy/crypto/crypto.pyo
${PYSITELIB}/sympy/crypto/tests/__init__.py
${PYSITELIB}/sympy/crypto/tests/__init__.pyc
${PYSITELIB}/sympy/crypto/tests/__init__.pyo
${PYSITELIB}/sympy/crypto/tests/test_crypto.py
${PYSITELIB}/sympy/crypto/tests/test_crypto.pyc
${PYSITELIB}/sympy/crypto/tests/test_crypto.pyo
${PYSITELIB}/sympy/diffgeom/__init__.py
${PYSITELIB}/sympy/diffgeom/__init__.pyc
${PYSITELIB}/sympy/diffgeom/__init__.pyo
${PYSITELIB}/sympy/diffgeom/diffgeom.py
${PYSITELIB}/sympy/diffgeom/diffgeom.pyc
${PYSITELIB}/sympy/diffgeom/diffgeom.pyo
${PYSITELIB}/sympy/diffgeom/rn.py
${PYSITELIB}/sympy/diffgeom/rn.pyc
${PYSITELIB}/sympy/diffgeom/rn.pyo
${PYSITELIB}/sympy/diffgeom/tests/__init__.py
${PYSITELIB}/sympy/diffgeom/tests/__init__.pyc
${PYSITELIB}/sympy/diffgeom/tests/__init__.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.py
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_class_structure.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.py
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_diffgeom.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.py
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_function_diffgeom_book.pyo
${PYSITELIB}/sympy/diffgeom/tests/test_hyperbolic_space.py
${PYSITELIB}/sympy/diffgeom/tests/test_hyperbolic_space.pyc
${PYSITELIB}/sympy/diffgeom/tests/test_hyperbolic_space.pyo
${PYSITELIB}/sympy/external/__init__.py
${PYSITELIB}/sympy/external/__init__.pyc
${PYSITELIB}/sympy/external/__init__.pyo
${PYSITELIB}/sympy/external/importtools.py
${PYSITELIB}/sympy/external/importtools.pyc
${PYSITELIB}/sympy/external/importtools.pyo
${PYSITELIB}/sympy/external/tests/__init__.py
${PYSITELIB}/sympy/external/tests/__init__.pyc
${PYSITELIB}/sympy/external/tests/__init__.pyo
${PYSITELIB}/sympy/external/tests/test_autowrap.py
${PYSITELIB}/sympy/external/tests/test_autowrap.pyc
${PYSITELIB}/sympy/external/tests/test_autowrap.pyo
${PYSITELIB}/sympy/external/tests/test_codegen.py
${PYSITELIB}/sympy/external/tests/test_codegen.pyc
${PYSITELIB}/sympy/external/tests/test_codegen.pyo
${PYSITELIB}/sympy/external/tests/test_importtools.py
${PYSITELIB}/sympy/external/tests/test_importtools.pyc
${PYSITELIB}/sympy/external/tests/test_importtools.pyo
${PYSITELIB}/sympy/external/tests/test_numpy.py
${PYSITELIB}/sympy/external/tests/test_numpy.pyc
${PYSITELIB}/sympy/external/tests/test_numpy.pyo
${PYSITELIB}/sympy/external/tests/test_sage.py
${PYSITELIB}/sympy/external/tests/test_sage.pyc
${PYSITELIB}/sympy/external/tests/test_sage.pyo
${PYSITELIB}/sympy/external/tests/test_scipy.py
${PYSITELIB}/sympy/external/tests/test_scipy.pyc
${PYSITELIB}/sympy/external/tests/test_scipy.pyo
${PYSITELIB}/sympy/functions/__init__.py
${PYSITELIB}/sympy/functions/__init__.pyc
${PYSITELIB}/sympy/functions/__init__.pyo
${PYSITELIB}/sympy/functions/combinatorial/__init__.py
${PYSITELIB}/sympy/functions/combinatorial/__init__.pyc
${PYSITELIB}/sympy/functions/combinatorial/__init__.pyo
${PYSITELIB}/sympy/functions/combinatorial/factorials.py
${PYSITELIB}/sympy/functions/combinatorial/factorials.pyc
${PYSITELIB}/sympy/functions/combinatorial/factorials.pyo
${PYSITELIB}/sympy/functions/combinatorial/numbers.py
${PYSITELIB}/sympy/functions/combinatorial/numbers.pyc
${PYSITELIB}/sympy/functions/combinatorial/numbers.pyo
${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.py
${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/__init__.pyo
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.py
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_factorials.pyo
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.py
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.pyc
${PYSITELIB}/sympy/functions/combinatorial/tests/test_comb_numbers.pyo
${PYSITELIB}/sympy/functions/elementary/__init__.py
${PYSITELIB}/sympy/functions/elementary/__init__.pyc
${PYSITELIB}/sympy/functions/elementary/__init__.pyo
${PYSITELIB}/sympy/functions/elementary/complexes.py
${PYSITELIB}/sympy/functions/elementary/complexes.pyc
${PYSITELIB}/sympy/functions/elementary/complexes.pyo
${PYSITELIB}/sympy/functions/elementary/exponential.py
${PYSITELIB}/sympy/functions/elementary/exponential.pyc
${PYSITELIB}/sympy/functions/elementary/exponential.pyo
${PYSITELIB}/sympy/functions/elementary/hyperbolic.py
${PYSITELIB}/sympy/functions/elementary/hyperbolic.pyc
${PYSITELIB}/sympy/functions/elementary/hyperbolic.pyo
${PYSITELIB}/sympy/functions/elementary/integers.py
${PYSITELIB}/sympy/functions/elementary/integers.pyc
${PYSITELIB}/sympy/functions/elementary/integers.pyo
${PYSITELIB}/sympy/functions/elementary/miscellaneous.py
${PYSITELIB}/sympy/functions/elementary/miscellaneous.pyc
${PYSITELIB}/sympy/functions/elementary/miscellaneous.pyo
${PYSITELIB}/sympy/functions/elementary/piecewise.py
${PYSITELIB}/sympy/functions/elementary/piecewise.pyc
${PYSITELIB}/sympy/functions/elementary/piecewise.pyo
${PYSITELIB}/sympy/functions/elementary/tests/__init__.py
${PYSITELIB}/sympy/functions/elementary/tests/__init__.pyc
${PYSITELIB}/sympy/functions/elementary/tests/__init__.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.py
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_complexes.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.py
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_exponential.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.py
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_hyperbolic.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.py
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_integers.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.py
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_interface.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.py
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_miscellaneous.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_piecewise.py
${PYSITELIB}/sympy/functions/elementary/tests/test_piecewise.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_piecewise.pyo
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.py
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.pyc
${PYSITELIB}/sympy/functions/elementary/tests/test_trigonometric.pyo
${PYSITELIB}/sympy/functions/elementary/trigonometric.py
${PYSITELIB}/sympy/functions/elementary/trigonometric.pyc
${PYSITELIB}/sympy/functions/elementary/trigonometric.pyo
${PYSITELIB}/sympy/functions/special/__init__.py
${PYSITELIB}/sympy/functions/special/__init__.pyc
${PYSITELIB}/sympy/functions/special/__init__.pyo
${PYSITELIB}/sympy/functions/special/bessel.py
${PYSITELIB}/sympy/functions/special/bessel.pyc
${PYSITELIB}/sympy/functions/special/bessel.pyo
${PYSITELIB}/sympy/functions/special/bsplines.py
${PYSITELIB}/sympy/functions/special/bsplines.pyc
${PYSITELIB}/sympy/functions/special/bsplines.pyo
${PYSITELIB}/sympy/functions/special/delta_functions.py
${PYSITELIB}/sympy/functions/special/delta_functions.pyc
${PYSITELIB}/sympy/functions/special/delta_functions.pyo
${PYSITELIB}/sympy/functions/special/elliptic_integrals.py
${PYSITELIB}/sympy/functions/special/elliptic_integrals.pyc
${PYSITELIB}/sympy/functions/special/elliptic_integrals.pyo
${PYSITELIB}/sympy/functions/special/error_functions.py
${PYSITELIB}/sympy/functions/special/error_functions.pyc
${PYSITELIB}/sympy/functions/special/error_functions.pyo
${PYSITELIB}/sympy/functions/special/gamma_functions.py
${PYSITELIB}/sympy/functions/special/gamma_functions.pyc
${PYSITELIB}/sympy/functions/special/gamma_functions.pyo
${PYSITELIB}/sympy/functions/special/hyper.py
${PYSITELIB}/sympy/functions/special/hyper.pyc
${PYSITELIB}/sympy/functions/special/hyper.pyo
${PYSITELIB}/sympy/functions/special/polynomials.py
${PYSITELIB}/sympy/functions/special/polynomials.pyc
${PYSITELIB}/sympy/functions/special/polynomials.pyo
${PYSITELIB}/sympy/functions/special/spherical_harmonics.py
${PYSITELIB}/sympy/functions/special/spherical_harmonics.pyc
${PYSITELIB}/sympy/functions/special/spherical_harmonics.pyo
${PYSITELIB}/sympy/functions/special/tensor_functions.py
${PYSITELIB}/sympy/functions/special/tensor_functions.pyc
${PYSITELIB}/sympy/functions/special/tensor_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/__init__.py
${PYSITELIB}/sympy/functions/special/tests/__init__.pyc
${PYSITELIB}/sympy/functions/special/tests/__init__.pyo
${PYSITELIB}/sympy/functions/special/tests/test_bessel.py
${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyc
${PYSITELIB}/sympy/functions/special/tests/test_bessel.pyo
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.py
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.pyc
${PYSITELIB}/sympy/functions/special/tests/test_bsplines.pyo
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_delta_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.py
${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.pyc
${PYSITELIB}/sympy/functions/special/tests/test_elliptic_integrals.pyo
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_error_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_gamma_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_hyper.py
${PYSITELIB}/sympy/functions/special/tests/test_hyper.pyc
${PYSITELIB}/sympy/functions/special/tests/test_hyper.pyo
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.py
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.pyc
${PYSITELIB}/sympy/functions/special/tests/test_spec_polynomials.pyo
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.py
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.pyc
${PYSITELIB}/sympy/functions/special/tests/test_spherical_harmonics.pyo
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_tensor_functions.pyo
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.py
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.pyc
${PYSITELIB}/sympy/functions/special/tests/test_zeta_functions.pyo
${PYSITELIB}/sympy/functions/special/zeta_functions.py
${PYSITELIB}/sympy/functions/special/zeta_functions.pyc
${PYSITELIB}/sympy/functions/special/zeta_functions.pyo
${PYSITELIB}/sympy/galgebra/__init__.py
${PYSITELIB}/sympy/galgebra/__init__.pyc
${PYSITELIB}/sympy/galgebra/__init__.pyo
${PYSITELIB}/sympy/galgebra/debug.py
${PYSITELIB}/sympy/galgebra/debug.pyc
${PYSITELIB}/sympy/galgebra/debug.pyo
${PYSITELIB}/sympy/galgebra/ga.py
${PYSITELIB}/sympy/galgebra/ga.pyc
${PYSITELIB}/sympy/galgebra/ga.pyo
${PYSITELIB}/sympy/galgebra/manifold.py
${PYSITELIB}/sympy/galgebra/manifold.pyc
${PYSITELIB}/sympy/galgebra/manifold.pyo
${PYSITELIB}/sympy/galgebra/ncutil.py
${PYSITELIB}/sympy/galgebra/ncutil.pyc
${PYSITELIB}/sympy/galgebra/ncutil.pyo
${PYSITELIB}/sympy/galgebra/precedence.py
${PYSITELIB}/sympy/galgebra/precedence.pyc
${PYSITELIB}/sympy/galgebra/precedence.pyo
${PYSITELIB}/sympy/galgebra/printing.py
${PYSITELIB}/sympy/galgebra/printing.pyc
${PYSITELIB}/sympy/galgebra/printing.pyo
${PYSITELIB}/sympy/galgebra/stringarrays.py
${PYSITELIB}/sympy/galgebra/stringarrays.pyc
${PYSITELIB}/sympy/galgebra/stringarrays.pyo
${PYSITELIB}/sympy/galgebra/tests/__init__.py
${PYSITELIB}/sympy/galgebra/tests/__init__.pyc
${PYSITELIB}/sympy/galgebra/tests/__init__.pyo
${PYSITELIB}/sympy/galgebra/tests/test_ga.py
${PYSITELIB}/sympy/galgebra/tests/test_ga.pyc
${PYSITELIB}/sympy/galgebra/tests/test_ga.pyo
${PYSITELIB}/sympy/galgebra/vector.py
${PYSITELIB}/sympy/galgebra/vector.pyc
${PYSITELIB}/sympy/galgebra/vector.pyo
${PYSITELIB}/sympy/geometry/__init__.py
${PYSITELIB}/sympy/geometry/__init__.pyc
${PYSITELIB}/sympy/geometry/__init__.pyo
${PYSITELIB}/sympy/geometry/curve.py
${PYSITELIB}/sympy/geometry/curve.pyc
${PYSITELIB}/sympy/geometry/curve.pyo
${PYSITELIB}/sympy/geometry/ellipse.py
${PYSITELIB}/sympy/geometry/ellipse.pyc
${PYSITELIB}/sympy/geometry/ellipse.pyo
${PYSITELIB}/sympy/geometry/entity.py
${PYSITELIB}/sympy/geometry/entity.pyc
${PYSITELIB}/sympy/geometry/entity.pyo
${PYSITELIB}/sympy/geometry/exceptions.py
${PYSITELIB}/sympy/geometry/exceptions.pyc
${PYSITELIB}/sympy/geometry/exceptions.pyo
${PYSITELIB}/sympy/geometry/line.py
${PYSITELIB}/sympy/geometry/line.pyc
${PYSITELIB}/sympy/geometry/line.pyo
${PYSITELIB}/sympy/geometry/point.py
${PYSITELIB}/sympy/geometry/point.pyc
${PYSITELIB}/sympy/geometry/point.pyo
${PYSITELIB}/sympy/geometry/polygon.py
${PYSITELIB}/sympy/geometry/polygon.pyc
${PYSITELIB}/sympy/geometry/polygon.pyo
${PYSITELIB}/sympy/geometry/tests/__init__.py
${PYSITELIB}/sympy/geometry/tests/__init__.pyc
${PYSITELIB}/sympy/geometry/tests/__init__.pyo
${PYSITELIB}/sympy/geometry/tests/test_geometry.py
${PYSITELIB}/sympy/geometry/tests/test_geometry.pyc
${PYSITELIB}/sympy/geometry/tests/test_geometry.pyo
${PYSITELIB}/sympy/geometry/util.py
${PYSITELIB}/sympy/geometry/util.pyc
${PYSITELIB}/sympy/geometry/util.pyo
${PYSITELIB}/sympy/integrals/__init__.py
${PYSITELIB}/sympy/integrals/__init__.pyc
${PYSITELIB}/sympy/integrals/__init__.pyo
${PYSITELIB}/sympy/integrals/deltafunctions.py
${PYSITELIB}/sympy/integrals/deltafunctions.pyc
${PYSITELIB}/sympy/integrals/deltafunctions.pyo
${PYSITELIB}/sympy/integrals/heurisch.py
${PYSITELIB}/sympy/integrals/heurisch.pyc
${PYSITELIB}/sympy/integrals/heurisch.pyo
${PYSITELIB}/sympy/integrals/integrals.py
${PYSITELIB}/sympy/integrals/integrals.pyc
${PYSITELIB}/sympy/integrals/integrals.pyo
${PYSITELIB}/sympy/integrals/manualintegrate.py
${PYSITELIB}/sympy/integrals/manualintegrate.pyc
${PYSITELIB}/sympy/integrals/manualintegrate.pyo
${PYSITELIB}/sympy/integrals/meijerint.py
${PYSITELIB}/sympy/integrals/meijerint.pyc
${PYSITELIB}/sympy/integrals/meijerint.pyo
${PYSITELIB}/sympy/integrals/meijerint_doc.py
${PYSITELIB}/sympy/integrals/meijerint_doc.pyc
${PYSITELIB}/sympy/integrals/meijerint_doc.pyo
${PYSITELIB}/sympy/integrals/prde.py
${PYSITELIB}/sympy/integrals/prde.pyc
${PYSITELIB}/sympy/integrals/prde.pyo
${PYSITELIB}/sympy/integrals/quadrature.py
${PYSITELIB}/sympy/integrals/quadrature.pyc
${PYSITELIB}/sympy/integrals/quadrature.pyo
${PYSITELIB}/sympy/integrals/rationaltools.py
${PYSITELIB}/sympy/integrals/rationaltools.pyc
${PYSITELIB}/sympy/integrals/rationaltools.pyo
${PYSITELIB}/sympy/integrals/rde.py
${PYSITELIB}/sympy/integrals/rde.pyc
${PYSITELIB}/sympy/integrals/rde.pyo
${PYSITELIB}/sympy/integrals/risch.py
${PYSITELIB}/sympy/integrals/risch.pyc
${PYSITELIB}/sympy/integrals/risch.pyo
${PYSITELIB}/sympy/integrals/tests/__init__.py
${PYSITELIB}/sympy/integrals/tests/__init__.pyc
${PYSITELIB}/sympy/integrals/tests/__init__.pyo
${PYSITELIB}/sympy/integrals/tests/test_deltafunctions.py
${PYSITELIB}/sympy/integrals/tests/test_deltafunctions.pyc
${PYSITELIB}/sympy/integrals/tests/test_deltafunctions.pyo
${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.py
${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.pyc
${PYSITELIB}/sympy/integrals/tests/test_failing_integrals.pyo
${PYSITELIB}/sympy/integrals/tests/test_heurisch.py
${PYSITELIB}/sympy/integrals/tests/test_heurisch.pyc
${PYSITELIB}/sympy/integrals/tests/test_heurisch.pyo
${PYSITELIB}/sympy/integrals/tests/test_integrals.py
${PYSITELIB}/sympy/integrals/tests/test_integrals.pyc
${PYSITELIB}/sympy/integrals/tests/test_integrals.pyo
${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.py
${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyc
${PYSITELIB}/sympy/integrals/tests/test_lineintegrals.pyo
${PYSITELIB}/sympy/integrals/tests/test_manual.py
${PYSITELIB}/sympy/integrals/tests/test_manual.pyc
${PYSITELIB}/sympy/integrals/tests/test_manual.pyo
${PYSITELIB}/sympy/integrals/tests/test_meijerint.py
${PYSITELIB}/sympy/integrals/tests/test_meijerint.pyc
${PYSITELIB}/sympy/integrals/tests/test_meijerint.pyo
${PYSITELIB}/sympy/integrals/tests/test_prde.py
${PYSITELIB}/sympy/integrals/tests/test_prde.pyc
${PYSITELIB}/sympy/integrals/tests/test_prde.pyo
${PYSITELIB}/sympy/integrals/tests/test_quadrature.py
${PYSITELIB}/sympy/integrals/tests/test_quadrature.pyc
${PYSITELIB}/sympy/integrals/tests/test_quadrature.pyo
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.py
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.pyc
${PYSITELIB}/sympy/integrals/tests/test_rationaltools.pyo
${PYSITELIB}/sympy/integrals/tests/test_rde.py
${PYSITELIB}/sympy/integrals/tests/test_rde.pyc
${PYSITELIB}/sympy/integrals/tests/test_rde.pyo
${PYSITELIB}/sympy/integrals/tests/test_risch.py
${PYSITELIB}/sympy/integrals/tests/test_risch.pyc
${PYSITELIB}/sympy/integrals/tests/test_risch.pyo
${PYSITELIB}/sympy/integrals/tests/test_transforms.py
${PYSITELIB}/sympy/integrals/tests/test_transforms.pyc
${PYSITELIB}/sympy/integrals/tests/test_transforms.pyo
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.py
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyc
${PYSITELIB}/sympy/integrals/tests/test_trigonometry.pyo
${PYSITELIB}/sympy/integrals/transforms.py
${PYSITELIB}/sympy/integrals/transforms.pyc
${PYSITELIB}/sympy/integrals/transforms.pyo
${PYSITELIB}/sympy/integrals/trigonometry.py
${PYSITELIB}/sympy/integrals/trigonometry.pyc
${PYSITELIB}/sympy/integrals/trigonometry.pyo
${PYSITELIB}/sympy/interactive/__init__.py
${PYSITELIB}/sympy/interactive/__init__.pyc
${PYSITELIB}/sympy/interactive/__init__.pyo
${PYSITELIB}/sympy/interactive/ipythonprinting.py
${PYSITELIB}/sympy/interactive/ipythonprinting.pyc
${PYSITELIB}/sympy/interactive/ipythonprinting.pyo
${PYSITELIB}/sympy/interactive/printing.py
${PYSITELIB}/sympy/interactive/printing.pyc
${PYSITELIB}/sympy/interactive/printing.pyo
${PYSITELIB}/sympy/interactive/session.py
${PYSITELIB}/sympy/interactive/session.pyc
${PYSITELIB}/sympy/interactive/session.pyo
${PYSITELIB}/sympy/interactive/tests/__init__.py
${PYSITELIB}/sympy/interactive/tests/__init__.pyc
${PYSITELIB}/sympy/interactive/tests/__init__.pyo
${PYSITELIB}/sympy/interactive/tests/test_interactive.py
${PYSITELIB}/sympy/interactive/tests/test_interactive.pyc
${PYSITELIB}/sympy/interactive/tests/test_interactive.pyo
${PYSITELIB}/sympy/interactive/tests/test_ipython.py
${PYSITELIB}/sympy/interactive/tests/test_ipython.pyc
${PYSITELIB}/sympy/interactive/tests/test_ipython.pyo
${PYSITELIB}/sympy/interactive/tests/test_ipythonprinting.py
${PYSITELIB}/sympy/interactive/tests/test_ipythonprinting.pyc
${PYSITELIB}/sympy/interactive/tests/test_ipythonprinting.pyo
${PYSITELIB}/sympy/liealgebras/__init__.py
${PYSITELIB}/sympy/liealgebras/__init__.pyc
${PYSITELIB}/sympy/liealgebras/__init__.pyo
${PYSITELIB}/sympy/liealgebras/cartan_matrix.py
${PYSITELIB}/sympy/liealgebras/cartan_matrix.pyc
${PYSITELIB}/sympy/liealgebras/cartan_matrix.pyo
${PYSITELIB}/sympy/liealgebras/cartan_type.py
${PYSITELIB}/sympy/liealgebras/cartan_type.pyc
${PYSITELIB}/sympy/liealgebras/cartan_type.pyo
${PYSITELIB}/sympy/liealgebras/dynkin_diagram.py
${PYSITELIB}/sympy/liealgebras/dynkin_diagram.pyc
${PYSITELIB}/sympy/liealgebras/dynkin_diagram.pyo
${PYSITELIB}/sympy/liealgebras/root_system.py
${PYSITELIB}/sympy/liealgebras/root_system.pyc
${PYSITELIB}/sympy/liealgebras/root_system.pyo
${PYSITELIB}/sympy/liealgebras/tests/__init__.py
${PYSITELIB}/sympy/liealgebras/tests/__init__.pyc
${PYSITELIB}/sympy/liealgebras/tests/__init__.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.py
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_matrix.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.py
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_cartan_type.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.py
${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_dynkin_diagram.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_root_system.py
${PYSITELIB}/sympy/liealgebras/tests/test_root_system.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_root_system.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_A.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_A.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_A.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_B.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_B.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_B.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_C.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_C.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_C.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_D.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_D.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_D.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_E.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_E.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_E.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_F.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_F.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_F.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_type_G.py
${PYSITELIB}/sympy/liealgebras/tests/test_type_G.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_type_G.pyo
${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.py
${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.pyc
${PYSITELIB}/sympy/liealgebras/tests/test_weyl_group.pyo
${PYSITELIB}/sympy/liealgebras/type_a.py
${PYSITELIB}/sympy/liealgebras/type_a.pyc
${PYSITELIB}/sympy/liealgebras/type_a.pyo
${PYSITELIB}/sympy/liealgebras/type_b.py
${PYSITELIB}/sympy/liealgebras/type_b.pyc
${PYSITELIB}/sympy/liealgebras/type_b.pyo
${PYSITELIB}/sympy/liealgebras/type_c.py
${PYSITELIB}/sympy/liealgebras/type_c.pyc
${PYSITELIB}/sympy/liealgebras/type_c.pyo
${PYSITELIB}/sympy/liealgebras/type_d.py
${PYSITELIB}/sympy/liealgebras/type_d.pyc
${PYSITELIB}/sympy/liealgebras/type_d.pyo
${PYSITELIB}/sympy/liealgebras/type_e.py
${PYSITELIB}/sympy/liealgebras/type_e.pyc
${PYSITELIB}/sympy/liealgebras/type_e.pyo
${PYSITELIB}/sympy/liealgebras/type_f.py
${PYSITELIB}/sympy/liealgebras/type_f.pyc
${PYSITELIB}/sympy/liealgebras/type_f.pyo
${PYSITELIB}/sympy/liealgebras/type_g.py
${PYSITELIB}/sympy/liealgebras/type_g.pyc
${PYSITELIB}/sympy/liealgebras/type_g.pyo
${PYSITELIB}/sympy/liealgebras/weyl_group.py
${PYSITELIB}/sympy/liealgebras/weyl_group.pyc
${PYSITELIB}/sympy/liealgebras/weyl_group.pyo
${PYSITELIB}/sympy/logic/__init__.py
${PYSITELIB}/sympy/logic/__init__.pyc
${PYSITELIB}/sympy/logic/__init__.pyo
${PYSITELIB}/sympy/logic/algorithms/__init__.py
${PYSITELIB}/sympy/logic/algorithms/__init__.pyc
${PYSITELIB}/sympy/logic/algorithms/__init__.pyo
${PYSITELIB}/sympy/logic/algorithms/dpll.py
${PYSITELIB}/sympy/logic/algorithms/dpll.pyc
${PYSITELIB}/sympy/logic/algorithms/dpll.pyo
${PYSITELIB}/sympy/logic/algorithms/dpll2.py
${PYSITELIB}/sympy/logic/algorithms/dpll2.pyc
${PYSITELIB}/sympy/logic/algorithms/dpll2.pyo
${PYSITELIB}/sympy/logic/boolalg.py
${PYSITELIB}/sympy/logic/boolalg.pyc
${PYSITELIB}/sympy/logic/boolalg.pyo
${PYSITELIB}/sympy/logic/inference.py
${PYSITELIB}/sympy/logic/inference.pyc
${PYSITELIB}/sympy/logic/inference.pyo
${PYSITELIB}/sympy/logic/tests/__init__.py
${PYSITELIB}/sympy/logic/tests/__init__.pyc
${PYSITELIB}/sympy/logic/tests/__init__.pyo
${PYSITELIB}/sympy/logic/tests/test_boolalg.py
${PYSITELIB}/sympy/logic/tests/test_boolalg.pyc
${PYSITELIB}/sympy/logic/tests/test_boolalg.pyo
${PYSITELIB}/sympy/logic/tests/test_dimacs.py
${PYSITELIB}/sympy/logic/tests/test_dimacs.pyc
${PYSITELIB}/sympy/logic/tests/test_dimacs.pyo
${PYSITELIB}/sympy/logic/tests/test_inference.py
${PYSITELIB}/sympy/logic/tests/test_inference.pyc
${PYSITELIB}/sympy/logic/tests/test_inference.pyo
${PYSITELIB}/sympy/logic/utilities/__init__.py
${PYSITELIB}/sympy/logic/utilities/__init__.pyc
${PYSITELIB}/sympy/logic/utilities/__init__.pyo
${PYSITELIB}/sympy/logic/utilities/dimacs.py
${PYSITELIB}/sympy/logic/utilities/dimacs.pyc
${PYSITELIB}/sympy/logic/utilities/dimacs.pyo
${PYSITELIB}/sympy/matrices/__init__.py
${PYSITELIB}/sympy/matrices/__init__.pyc
${PYSITELIB}/sympy/matrices/__init__.pyo
${PYSITELIB}/sympy/matrices/dense.py
${PYSITELIB}/sympy/matrices/dense.pyc
${PYSITELIB}/sympy/matrices/dense.pyo
${PYSITELIB}/sympy/matrices/expressions/__init__.py
${PYSITELIB}/sympy/matrices/expressions/__init__.pyc
${PYSITELIB}/sympy/matrices/expressions/__init__.pyo
${PYSITELIB}/sympy/matrices/expressions/adjoint.py
${PYSITELIB}/sympy/matrices/expressions/adjoint.pyc
${PYSITELIB}/sympy/matrices/expressions/adjoint.pyo
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.py
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/blockmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/determinant.py
${PYSITELIB}/sympy/matrices/expressions/determinant.pyc
${PYSITELIB}/sympy/matrices/expressions/determinant.pyo
${PYSITELIB}/sympy/matrices/expressions/diagonal.py
${PYSITELIB}/sympy/matrices/expressions/diagonal.pyc
${PYSITELIB}/sympy/matrices/expressions/diagonal.pyo
${PYSITELIB}/sympy/matrices/expressions/factorizations.py
${PYSITELIB}/sympy/matrices/expressions/factorizations.pyc
${PYSITELIB}/sympy/matrices/expressions/factorizations.pyo
${PYSITELIB}/sympy/matrices/expressions/fourier.py
${PYSITELIB}/sympy/matrices/expressions/fourier.pyc
${PYSITELIB}/sympy/matrices/expressions/fourier.pyo
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.py
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/funcmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/hadamard.py
${PYSITELIB}/sympy/matrices/expressions/hadamard.pyc
${PYSITELIB}/sympy/matrices/expressions/hadamard.pyo
${PYSITELIB}/sympy/matrices/expressions/inverse.py
${PYSITELIB}/sympy/matrices/expressions/inverse.pyc
${PYSITELIB}/sympy/matrices/expressions/inverse.pyo
${PYSITELIB}/sympy/matrices/expressions/matadd.py
${PYSITELIB}/sympy/matrices/expressions/matadd.pyc
${PYSITELIB}/sympy/matrices/expressions/matadd.pyo
${PYSITELIB}/sympy/matrices/expressions/matexpr.py
${PYSITELIB}/sympy/matrices/expressions/matexpr.pyc
${PYSITELIB}/sympy/matrices/expressions/matexpr.pyo
${PYSITELIB}/sympy/matrices/expressions/matmul.py
${PYSITELIB}/sympy/matrices/expressions/matmul.pyc
${PYSITELIB}/sympy/matrices/expressions/matmul.pyo
${PYSITELIB}/sympy/matrices/expressions/matpow.py
${PYSITELIB}/sympy/matrices/expressions/matpow.pyc
${PYSITELIB}/sympy/matrices/expressions/matpow.pyo
${PYSITELIB}/sympy/matrices/expressions/slice.py
${PYSITELIB}/sympy/matrices/expressions/slice.pyc
${PYSITELIB}/sympy/matrices/expressions/slice.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.py
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/__init__.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_adjoint.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_blockmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_determinant.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_diagonal.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_factorizations.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_fourier.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_funcmatrix.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_hadamard.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_hadamard.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_hadamard.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_indexing.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_inverse.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_inverse.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_inverse.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_matadd.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_matmul.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_matrix_exprs.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_slice.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_trace.pyo
${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.py
${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyc
${PYSITELIB}/sympy/matrices/expressions/tests/test_transpose.pyo
${PYSITELIB}/sympy/matrices/expressions/trace.py
${PYSITELIB}/sympy/matrices/expressions/trace.pyc
${PYSITELIB}/sympy/matrices/expressions/trace.pyo
${PYSITELIB}/sympy/matrices/expressions/transpose.py
${PYSITELIB}/sympy/matrices/expressions/transpose.pyc
${PYSITELIB}/sympy/matrices/expressions/transpose.pyo
${PYSITELIB}/sympy/matrices/immutable.py
${PYSITELIB}/sympy/matrices/immutable.pyc
${PYSITELIB}/sympy/matrices/immutable.pyo
${PYSITELIB}/sympy/matrices/matrices.py
${PYSITELIB}/sympy/matrices/matrices.pyc
${PYSITELIB}/sympy/matrices/matrices.pyo
${PYSITELIB}/sympy/matrices/sparse.py
${PYSITELIB}/sympy/matrices/sparse.pyc
${PYSITELIB}/sympy/matrices/sparse.pyo
${PYSITELIB}/sympy/matrices/sparsetools.py
${PYSITELIB}/sympy/matrices/sparsetools.pyc
${PYSITELIB}/sympy/matrices/sparsetools.pyo
${PYSITELIB}/sympy/matrices/tests/__init__.py
${PYSITELIB}/sympy/matrices/tests/__init__.pyc
${PYSITELIB}/sympy/matrices/tests/__init__.pyo
${PYSITELIB}/sympy/matrices/tests/test_immutable.py
${PYSITELIB}/sympy/matrices/tests/test_immutable.pyc
${PYSITELIB}/sympy/matrices/tests/test_immutable.pyo
${PYSITELIB}/sympy/matrices/tests/test_interactions.py
${PYSITELIB}/sympy/matrices/tests/test_interactions.pyc
${PYSITELIB}/sympy/matrices/tests/test_interactions.pyo
${PYSITELIB}/sympy/matrices/tests/test_matrices.py
${PYSITELIB}/sympy/matrices/tests/test_matrices.pyc
${PYSITELIB}/sympy/matrices/tests/test_matrices.pyo
${PYSITELIB}/sympy/matrices/tests/test_sparse.py
${PYSITELIB}/sympy/matrices/tests/test_sparse.pyc
${PYSITELIB}/sympy/matrices/tests/test_sparse.pyo
${PYSITELIB}/sympy/matrices/tests/test_sparsetools.py
${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyc
${PYSITELIB}/sympy/matrices/tests/test_sparsetools.pyo
${PYSITELIB}/sympy/mpmath/__init__.py
${PYSITELIB}/sympy/mpmath/__init__.pyc
${PYSITELIB}/sympy/mpmath/__init__.pyo
${PYSITELIB}/sympy/mpmath/calculus/__init__.py
${PYSITELIB}/sympy/mpmath/calculus/__init__.pyc
${PYSITELIB}/sympy/mpmath/calculus/__init__.pyo
${PYSITELIB}/sympy/mpmath/calculus/approximation.py
${PYSITELIB}/sympy/mpmath/calculus/approximation.pyc
${PYSITELIB}/sympy/mpmath/calculus/approximation.pyo
${PYSITELIB}/sympy/mpmath/calculus/calculus.py
${PYSITELIB}/sympy/mpmath/calculus/calculus.pyc
${PYSITELIB}/sympy/mpmath/calculus/calculus.pyo
${PYSITELIB}/sympy/mpmath/calculus/differentiation.py
${PYSITELIB}/sympy/mpmath/calculus/differentiation.pyc
${PYSITELIB}/sympy/mpmath/calculus/differentiation.pyo
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.py
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.pyc
${PYSITELIB}/sympy/mpmath/calculus/extrapolation.pyo
${PYSITELIB}/sympy/mpmath/calculus/odes.py
${PYSITELIB}/sympy/mpmath/calculus/odes.pyc
${PYSITELIB}/sympy/mpmath/calculus/odes.pyo
${PYSITELIB}/sympy/mpmath/calculus/optimization.py
${PYSITELIB}/sympy/mpmath/calculus/optimization.pyc
${PYSITELIB}/sympy/mpmath/calculus/optimization.pyo
${PYSITELIB}/sympy/mpmath/calculus/polynomials.py
${PYSITELIB}/sympy/mpmath/calculus/polynomials.pyc
${PYSITELIB}/sympy/mpmath/calculus/polynomials.pyo
${PYSITELIB}/sympy/mpmath/calculus/quadrature.py
${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyc
${PYSITELIB}/sympy/mpmath/calculus/quadrature.pyo
${PYSITELIB}/sympy/mpmath/ctx_base.py
${PYSITELIB}/sympy/mpmath/ctx_base.pyc
${PYSITELIB}/sympy/mpmath/ctx_base.pyo
${PYSITELIB}/sympy/mpmath/ctx_fp.py
${PYSITELIB}/sympy/mpmath/ctx_fp.pyc
${PYSITELIB}/sympy/mpmath/ctx_fp.pyo
${PYSITELIB}/sympy/mpmath/ctx_iv.py
${PYSITELIB}/sympy/mpmath/ctx_iv.pyc
${PYSITELIB}/sympy/mpmath/ctx_iv.pyo
${PYSITELIB}/sympy/mpmath/ctx_mp.py
${PYSITELIB}/sympy/mpmath/ctx_mp.pyc
${PYSITELIB}/sympy/mpmath/ctx_mp.pyo
${PYSITELIB}/sympy/mpmath/ctx_mp_python.py
${PYSITELIB}/sympy/mpmath/ctx_mp_python.pyc
${PYSITELIB}/sympy/mpmath/ctx_mp_python.pyo
${PYSITELIB}/sympy/mpmath/function_docs.py
${PYSITELIB}/sympy/mpmath/function_docs.pyc
${PYSITELIB}/sympy/mpmath/function_docs.pyo
${PYSITELIB}/sympy/mpmath/functions/__init__.py
${PYSITELIB}/sympy/mpmath/functions/__init__.pyc
${PYSITELIB}/sympy/mpmath/functions/__init__.pyo
${PYSITELIB}/sympy/mpmath/functions/bessel.py
${PYSITELIB}/sympy/mpmath/functions/bessel.pyc
${PYSITELIB}/sympy/mpmath/functions/bessel.pyo
${PYSITELIB}/sympy/mpmath/functions/elliptic.py
${PYSITELIB}/sympy/mpmath/functions/elliptic.pyc
${PYSITELIB}/sympy/mpmath/functions/elliptic.pyo
${PYSITELIB}/sympy/mpmath/functions/expintegrals.py
${PYSITELIB}/sympy/mpmath/functions/expintegrals.pyc
${PYSITELIB}/sympy/mpmath/functions/expintegrals.pyo
${PYSITELIB}/sympy/mpmath/functions/factorials.py
${PYSITELIB}/sympy/mpmath/functions/factorials.pyc
${PYSITELIB}/sympy/mpmath/functions/factorials.pyo
${PYSITELIB}/sympy/mpmath/functions/functions.py
${PYSITELIB}/sympy/mpmath/functions/functions.pyc
${PYSITELIB}/sympy/mpmath/functions/functions.pyo
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.py
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.pyc
${PYSITELIB}/sympy/mpmath/functions/hypergeometric.pyo
${PYSITELIB}/sympy/mpmath/functions/orthogonal.py
${PYSITELIB}/sympy/mpmath/functions/orthogonal.pyc
${PYSITELIB}/sympy/mpmath/functions/orthogonal.pyo
${PYSITELIB}/sympy/mpmath/functions/qfunctions.py
${PYSITELIB}/sympy/mpmath/functions/qfunctions.pyc
${PYSITELIB}/sympy/mpmath/functions/qfunctions.pyo
${PYSITELIB}/sympy/mpmath/functions/rszeta.py
${PYSITELIB}/sympy/mpmath/functions/rszeta.pyc
${PYSITELIB}/sympy/mpmath/functions/rszeta.pyo
${PYSITELIB}/sympy/mpmath/functions/theta.py
${PYSITELIB}/sympy/mpmath/functions/theta.pyc
${PYSITELIB}/sympy/mpmath/functions/theta.pyo
${PYSITELIB}/sympy/mpmath/functions/zeta.py
${PYSITELIB}/sympy/mpmath/functions/zeta.pyc
${PYSITELIB}/sympy/mpmath/functions/zeta.pyo
${PYSITELIB}/sympy/mpmath/functions/zetazeros.py
${PYSITELIB}/sympy/mpmath/functions/zetazeros.pyc
${PYSITELIB}/sympy/mpmath/functions/zetazeros.pyo
${PYSITELIB}/sympy/mpmath/identification.py
${PYSITELIB}/sympy/mpmath/identification.pyc
${PYSITELIB}/sympy/mpmath/identification.pyo
${PYSITELIB}/sympy/mpmath/libmp/__init__.py
${PYSITELIB}/sympy/mpmath/libmp/__init__.pyc
${PYSITELIB}/sympy/mpmath/libmp/__init__.pyo
${PYSITELIB}/sympy/mpmath/libmp/backend.py
${PYSITELIB}/sympy/mpmath/libmp/backend.pyc
${PYSITELIB}/sympy/mpmath/libmp/backend.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py2.py
${PLIST.py2x}${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyc
${PLIST.py2x}${PYSITELIB}/sympy/mpmath/libmp/exec_py2.pyo
${PYSITELIB}/sympy/mpmath/libmp/exec_py3.py
${PLIST.py3x}${PYSITELIB}/sympy/mpmath/libmp/exec_py3.pyc
${PLIST.py3x}${PYSITELIB}/sympy/mpmath/libmp/exec_py3.pyo
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.py
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyc
${PYSITELIB}/sympy/mpmath/libmp/gammazeta.pyo
${PYSITELIB}/sympy/mpmath/libmp/libelefun.py
${PYSITELIB}/sympy/mpmath/libmp/libelefun.pyc
${PYSITELIB}/sympy/mpmath/libmp/libelefun.pyo
${PYSITELIB}/sympy/mpmath/libmp/libhyper.py
${PYSITELIB}/sympy/mpmath/libmp/libhyper.pyc
${PYSITELIB}/sympy/mpmath/libmp/libhyper.pyo
${PYSITELIB}/sympy/mpmath/libmp/libintmath.py
${PYSITELIB}/sympy/mpmath/libmp/libintmath.pyc
${PYSITELIB}/sympy/mpmath/libmp/libintmath.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpc.py
${PYSITELIB}/sympy/mpmath/libmp/libmpc.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpc.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpf.py
${PYSITELIB}/sympy/mpmath/libmp/libmpf.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpf.pyo
${PYSITELIB}/sympy/mpmath/libmp/libmpi.py
${PYSITELIB}/sympy/mpmath/libmp/libmpi.pyc
${PYSITELIB}/sympy/mpmath/libmp/libmpi.pyo
${PYSITELIB}/sympy/mpmath/math2.py
${PYSITELIB}/sympy/mpmath/math2.pyc
${PYSITELIB}/sympy/mpmath/math2.pyo
${PYSITELIB}/sympy/mpmath/matrices/__init__.py
${PYSITELIB}/sympy/mpmath/matrices/__init__.pyc
${PYSITELIB}/sympy/mpmath/matrices/__init__.pyo
${PYSITELIB}/sympy/mpmath/matrices/calculus.py
${PYSITELIB}/sympy/mpmath/matrices/calculus.pyc
${PYSITELIB}/sympy/mpmath/matrices/calculus.pyo
${PYSITELIB}/sympy/mpmath/matrices/linalg.py
${PYSITELIB}/sympy/mpmath/matrices/linalg.pyc
${PYSITELIB}/sympy/mpmath/matrices/linalg.pyo
${PYSITELIB}/sympy/mpmath/matrices/matrices.py
${PYSITELIB}/sympy/mpmath/matrices/matrices.pyc
${PYSITELIB}/sympy/mpmath/matrices/matrices.pyo
${PYSITELIB}/sympy/mpmath/rational.py
${PYSITELIB}/sympy/mpmath/rational.pyc
${PYSITELIB}/sympy/mpmath/rational.pyo
${PYSITELIB}/sympy/mpmath/tests/__init__.py
${PYSITELIB}/sympy/mpmath/tests/__init__.pyc
${PYSITELIB}/sympy/mpmath/tests/__init__.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.py
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_bessel.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.py
${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_gamma.pyo
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.py
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.pyc
${PYSITELIB}/sympy/mpmath/tests/extratest_zeta.pyo
${PYSITELIB}/sympy/mpmath/tests/runtests.py
${PYSITELIB}/sympy/mpmath/tests/runtests.pyc
${PYSITELIB}/sympy/mpmath/tests/runtests.pyo
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.py
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.pyc
${PYSITELIB}/sympy/mpmath/tests/test_basic_ops.pyo
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.py
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.pyc
${PYSITELIB}/sympy/mpmath/tests/test_bitwise.pyo
${PYSITELIB}/sympy/mpmath/tests/test_calculus.py
${PYSITELIB}/sympy/mpmath/tests/test_calculus.pyc
${PYSITELIB}/sympy/mpmath/tests/test_calculus.pyo
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.py
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.pyc
${PYSITELIB}/sympy/mpmath/tests/test_compatibility.pyo
${PYSITELIB}/sympy/mpmath/tests/test_convert.py
${PYSITELIB}/sympy/mpmath/tests/test_convert.pyc
${PYSITELIB}/sympy/mpmath/tests/test_convert.pyo
${PYSITELIB}/sympy/mpmath/tests/test_diff.py
${PYSITELIB}/sympy/mpmath/tests/test_diff.pyc
${PYSITELIB}/sympy/mpmath/tests/test_diff.pyo
${PYSITELIB}/sympy/mpmath/tests/test_division.py
${PYSITELIB}/sympy/mpmath/tests/test_division.pyc
${PYSITELIB}/sympy/mpmath/tests/test_division.pyo
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.py
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.pyc
${PYSITELIB}/sympy/mpmath/tests/test_elliptic.pyo
${PYSITELIB}/sympy/mpmath/tests/test_fp.py
${PYSITELIB}/sympy/mpmath/tests/test_fp.pyc
${PYSITELIB}/sympy/mpmath/tests/test_fp.pyo
${PYSITELIB}/sympy/mpmath/tests/test_functions.py
${PYSITELIB}/sympy/mpmath/tests/test_functions.pyc
${PYSITELIB}/sympy/mpmath/tests/test_functions.pyo
${PYSITELIB}/sympy/mpmath/tests/test_functions2.py
${PYSITELIB}/sympy/mpmath/tests/test_functions2.pyc
${PYSITELIB}/sympy/mpmath/tests/test_functions2.pyo
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.py
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.pyc
${PYSITELIB}/sympy/mpmath/tests/test_gammazeta.pyo
${PYSITELIB}/sympy/mpmath/tests/test_hp.py
${PYSITELIB}/sympy/mpmath/tests/test_hp.pyc
${PYSITELIB}/sympy/mpmath/tests/test_hp.pyo
${PYSITELIB}/sympy/mpmath/tests/test_identify.py
${PYSITELIB}/sympy/mpmath/tests/test_identify.pyc
${PYSITELIB}/sympy/mpmath/tests/test_identify.pyo
${PYSITELIB}/sympy/mpmath/tests/test_interval.py
${PYSITELIB}/sympy/mpmath/tests/test_interval.pyc
${PYSITELIB}/sympy/mpmath/tests/test_interval.pyo
${PYSITELIB}/sympy/mpmath/tests/test_linalg.py
${PYSITELIB}/sympy/mpmath/tests/test_linalg.pyc
${PYSITELIB}/sympy/mpmath/tests/test_linalg.pyo
${PYSITELIB}/sympy/mpmath/tests/test_matrices.py
${PYSITELIB}/sympy/mpmath/tests/test_matrices.pyc
${PYSITELIB}/sympy/mpmath/tests/test_matrices.pyo
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.py
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.pyc
${PYSITELIB}/sympy/mpmath/tests/test_mpmath.pyo
${PYSITELIB}/sympy/mpmath/tests/test_ode.py
${PYSITELIB}/sympy/mpmath/tests/test_ode.pyc
${PYSITELIB}/sympy/mpmath/tests/test_ode.pyo
${PYSITELIB}/sympy/mpmath/tests/test_pickle.py
${PYSITELIB}/sympy/mpmath/tests/test_pickle.pyc
${PYSITELIB}/sympy/mpmath/tests/test_pickle.pyo
${PYSITELIB}/sympy/mpmath/tests/test_power.py
${PYSITELIB}/sympy/mpmath/tests/test_power.pyc
${PYSITELIB}/sympy/mpmath/tests/test_power.pyo
${PYSITELIB}/sympy/mpmath/tests/test_quad.py
${PYSITELIB}/sympy/mpmath/tests/test_quad.pyc
${PYSITELIB}/sympy/mpmath/tests/test_quad.pyo
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.py
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.pyc
${PYSITELIB}/sympy/mpmath/tests/test_rootfinding.pyo
${PYSITELIB}/sympy/mpmath/tests/test_special.py
${PYSITELIB}/sympy/mpmath/tests/test_special.pyc
${PYSITELIB}/sympy/mpmath/tests/test_special.pyo
${PYSITELIB}/sympy/mpmath/tests/test_str.py
${PYSITELIB}/sympy/mpmath/tests/test_str.pyc
${PYSITELIB}/sympy/mpmath/tests/test_str.pyo
${PYSITELIB}/sympy/mpmath/tests/test_summation.py
${PYSITELIB}/sympy/mpmath/tests/test_summation.pyc
${PYSITELIB}/sympy/mpmath/tests/test_summation.pyo
${PYSITELIB}/sympy/mpmath/tests/test_trig.py
${PYSITELIB}/sympy/mpmath/tests/test_trig.pyc
${PYSITELIB}/sympy/mpmath/tests/test_trig.pyo
${PYSITELIB}/sympy/mpmath/tests/test_visualization.py
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyc
${PYSITELIB}/sympy/mpmath/tests/test_visualization.pyo
${PYSITELIB}/sympy/mpmath/tests/torture.py
${PYSITELIB}/sympy/mpmath/tests/torture.pyc
${PYSITELIB}/sympy/mpmath/tests/torture.pyo
${PYSITELIB}/sympy/mpmath/usertools.py
${PYSITELIB}/sympy/mpmath/usertools.pyc
${PYSITELIB}/sympy/mpmath/usertools.pyo
${PYSITELIB}/sympy/mpmath/visualization.py
${PYSITELIB}/sympy/mpmath/visualization.pyc
${PYSITELIB}/sympy/mpmath/visualization.pyo
${PYSITELIB}/sympy/ntheory/__init__.py
${PYSITELIB}/sympy/ntheory/__init__.pyc
${PYSITELIB}/sympy/ntheory/__init__.pyo
${PYSITELIB}/sympy/ntheory/bbp_pi.py
${PYSITELIB}/sympy/ntheory/bbp_pi.pyc
${PYSITELIB}/sympy/ntheory/bbp_pi.pyo
${PYSITELIB}/sympy/ntheory/factor_.py
${PYSITELIB}/sympy/ntheory/factor_.pyc
${PYSITELIB}/sympy/ntheory/factor_.pyo
${PYSITELIB}/sympy/ntheory/generate.py
${PYSITELIB}/sympy/ntheory/generate.pyc
${PYSITELIB}/sympy/ntheory/generate.pyo
${PYSITELIB}/sympy/ntheory/modular.py
${PYSITELIB}/sympy/ntheory/modular.pyc
${PYSITELIB}/sympy/ntheory/modular.pyo
${PYSITELIB}/sympy/ntheory/multinomial.py
${PYSITELIB}/sympy/ntheory/multinomial.pyc
${PYSITELIB}/sympy/ntheory/multinomial.pyo
${PYSITELIB}/sympy/ntheory/partitions_.py
${PYSITELIB}/sympy/ntheory/partitions_.pyc
${PYSITELIB}/sympy/ntheory/partitions_.pyo
${PYSITELIB}/sympy/ntheory/primetest.py
${PYSITELIB}/sympy/ntheory/primetest.pyc
${PYSITELIB}/sympy/ntheory/primetest.pyo
${PYSITELIB}/sympy/ntheory/residue_ntheory.py
${PYSITELIB}/sympy/ntheory/residue_ntheory.pyc
${PYSITELIB}/sympy/ntheory/residue_ntheory.pyo
${PYSITELIB}/sympy/ntheory/tests/__init__.py
${PYSITELIB}/sympy/ntheory/tests/__init__.pyc
${PYSITELIB}/sympy/ntheory/tests/__init__.pyo
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.py
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyc
${PYSITELIB}/sympy/ntheory/tests/test_ntheory.pyo
${PYSITELIB}/sympy/parsing/__init__.py
${PYSITELIB}/sympy/parsing/__init__.pyc
${PYSITELIB}/sympy/parsing/__init__.pyo
${PYSITELIB}/sympy/parsing/ast_parser.py
${PYSITELIB}/sympy/parsing/ast_parser.pyc
${PYSITELIB}/sympy/parsing/ast_parser.pyo
${PYSITELIB}/sympy/parsing/mathematica.py
${PYSITELIB}/sympy/parsing/mathematica.pyc
${PYSITELIB}/sympy/parsing/mathematica.pyo
${PYSITELIB}/sympy/parsing/maxima.py
${PYSITELIB}/sympy/parsing/maxima.pyc
${PYSITELIB}/sympy/parsing/maxima.pyo
${PYSITELIB}/sympy/parsing/sympy_parser.py
${PYSITELIB}/sympy/parsing/sympy_parser.pyc
${PYSITELIB}/sympy/parsing/sympy_parser.pyo
${PYSITELIB}/sympy/parsing/sympy_tokenize.py
${PYSITELIB}/sympy/parsing/sympy_tokenize.pyc
${PYSITELIB}/sympy/parsing/sympy_tokenize.pyo
${PYSITELIB}/sympy/parsing/tests/__init__.py
${PYSITELIB}/sympy/parsing/tests/__init__.pyc
${PYSITELIB}/sympy/parsing/tests/__init__.pyo
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc
${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo
${PYSITELIB}/sympy/parsing/tests/test_mathematica.py
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc
${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo
${PYSITELIB}/sympy/parsing/tests/test_maxima.py
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc
${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.py
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyc
${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyo
${PYSITELIB}/sympy/physics/__init__.py
${PYSITELIB}/sympy/physics/__init__.pyc
${PYSITELIB}/sympy/physics/__init__.pyo
${PYSITELIB}/sympy/physics/gaussopt.py
${PYSITELIB}/sympy/physics/gaussopt.pyc
${PYSITELIB}/sympy/physics/gaussopt.pyo
${PYSITELIB}/sympy/physics/hep/__init__.py
${PYSITELIB}/sympy/physics/hep/__init__.pyc
${PYSITELIB}/sympy/physics/hep/__init__.pyo
${PYSITELIB}/sympy/physics/hep/gamma_matrices.py
${PYSITELIB}/sympy/physics/hep/gamma_matrices.pyc
${PYSITELIB}/sympy/physics/hep/gamma_matrices.pyo
${PYSITELIB}/sympy/physics/hep/tests/__init__.py
${PYSITELIB}/sympy/physics/hep/tests/__init__.pyc
${PYSITELIB}/sympy/physics/hep/tests/__init__.pyo
${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.py
${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.pyc
${PYSITELIB}/sympy/physics/hep/tests/test_gamma_matrices.pyo
${PYSITELIB}/sympy/physics/hydrogen.py
${PYSITELIB}/sympy/physics/hydrogen.pyc
${PYSITELIB}/sympy/physics/hydrogen.pyo
${PYSITELIB}/sympy/physics/matrices.py
${PYSITELIB}/sympy/physics/matrices.pyc
${PYSITELIB}/sympy/physics/matrices.pyo
${PYSITELIB}/sympy/physics/mechanics/__init__.py
${PYSITELIB}/sympy/physics/mechanics/__init__.pyc
${PYSITELIB}/sympy/physics/mechanics/__init__.pyo
${PYSITELIB}/sympy/physics/mechanics/essential.py
${PYSITELIB}/sympy/physics/mechanics/essential.pyc
${PYSITELIB}/sympy/physics/mechanics/essential.pyo
${PYSITELIB}/sympy/physics/mechanics/functions.py
${PYSITELIB}/sympy/physics/mechanics/functions.pyc
${PYSITELIB}/sympy/physics/mechanics/functions.pyo
${PYSITELIB}/sympy/physics/mechanics/kane.py
${PYSITELIB}/sympy/physics/mechanics/kane.pyc
${PYSITELIB}/sympy/physics/mechanics/kane.pyo
${PYSITELIB}/sympy/physics/mechanics/lagrange.py
${PYSITELIB}/sympy/physics/mechanics/lagrange.pyc
${PYSITELIB}/sympy/physics/mechanics/lagrange.pyo
${PYSITELIB}/sympy/physics/mechanics/particle.py
${PYSITELIB}/sympy/physics/mechanics/particle.pyc
${PYSITELIB}/sympy/physics/mechanics/particle.pyo
${PYSITELIB}/sympy/physics/mechanics/point.py
${PYSITELIB}/sympy/physics/mechanics/point.pyc
${PYSITELIB}/sympy/physics/mechanics/point.pyo
${PYSITELIB}/sympy/physics/mechanics/rigidbody.py
${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyc
${PYSITELIB}/sympy/physics/mechanics/rigidbody.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.py
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/__init__.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_essential.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_point.pyo
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.py
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyc
${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyo
${PYSITELIB}/sympy/physics/paulialgebra.py
${PYSITELIB}/sympy/physics/paulialgebra.pyc
${PYSITELIB}/sympy/physics/paulialgebra.pyo
${PYSITELIB}/sympy/physics/qho_1d.py
${PYSITELIB}/sympy/physics/qho_1d.pyc
${PYSITELIB}/sympy/physics/qho_1d.pyo
${PYSITELIB}/sympy/physics/quantum/__init__.py
${PYSITELIB}/sympy/physics/quantum/__init__.pyc
${PYSITELIB}/sympy/physics/quantum/__init__.pyo
${PYSITELIB}/sympy/physics/quantum/anticommutator.py
${PYSITELIB}/sympy/physics/quantum/anticommutator.pyc
${PYSITELIB}/sympy/physics/quantum/anticommutator.pyo
${PYSITELIB}/sympy/physics/quantum/cartesian.py
${PYSITELIB}/sympy/physics/quantum/cartesian.pyc
${PYSITELIB}/sympy/physics/quantum/cartesian.pyo
${PYSITELIB}/sympy/physics/quantum/cg.py
${PYSITELIB}/sympy/physics/quantum/cg.pyc
${PYSITELIB}/sympy/physics/quantum/cg.pyo
${PYSITELIB}/sympy/physics/quantum/circuitplot.py
${PYSITELIB}/sympy/physics/quantum/circuitplot.pyc
${PYSITELIB}/sympy/physics/quantum/circuitplot.pyo
${PYSITELIB}/sympy/physics/quantum/circuitutils.py
${PYSITELIB}/sympy/physics/quantum/circuitutils.pyc
${PYSITELIB}/sympy/physics/quantum/circuitutils.pyo
${PYSITELIB}/sympy/physics/quantum/commutator.py
${PYSITELIB}/sympy/physics/quantum/commutator.pyc
${PYSITELIB}/sympy/physics/quantum/commutator.pyo
${PYSITELIB}/sympy/physics/quantum/constants.py
${PYSITELIB}/sympy/physics/quantum/constants.pyc
${PYSITELIB}/sympy/physics/quantum/constants.pyo
${PYSITELIB}/sympy/physics/quantum/dagger.py
${PYSITELIB}/sympy/physics/quantum/dagger.pyc
${PYSITELIB}/sympy/physics/quantum/dagger.pyo
${PYSITELIB}/sympy/physics/quantum/density.py
${PYSITELIB}/sympy/physics/quantum/density.pyc
${PYSITELIB}/sympy/physics/quantum/density.pyo
${PYSITELIB}/sympy/physics/quantum/gate.py
${PYSITELIB}/sympy/physics/quantum/gate.pyc
${PYSITELIB}/sympy/physics/quantum/gate.pyo
${PYSITELIB}/sympy/physics/quantum/grover.py
${PYSITELIB}/sympy/physics/quantum/grover.pyc
${PYSITELIB}/sympy/physics/quantum/grover.pyo
${PYSITELIB}/sympy/physics/quantum/hilbert.py
${PYSITELIB}/sympy/physics/quantum/hilbert.pyc
${PYSITELIB}/sympy/physics/quantum/hilbert.pyo
${PYSITELIB}/sympy/physics/quantum/identitysearch.py
${PYSITELIB}/sympy/physics/quantum/identitysearch.pyc
${PYSITELIB}/sympy/physics/quantum/identitysearch.pyo
${PYSITELIB}/sympy/physics/quantum/innerproduct.py
${PYSITELIB}/sympy/physics/quantum/innerproduct.pyc
${PYSITELIB}/sympy/physics/quantum/innerproduct.pyo
${PYSITELIB}/sympy/physics/quantum/matrixcache.py
${PYSITELIB}/sympy/physics/quantum/matrixcache.pyc
${PYSITELIB}/sympy/physics/quantum/matrixcache.pyo
${PYSITELIB}/sympy/physics/quantum/matrixutils.py
${PYSITELIB}/sympy/physics/quantum/matrixutils.pyc
${PYSITELIB}/sympy/physics/quantum/matrixutils.pyo
${PYSITELIB}/sympy/physics/quantum/operator.py
${PYSITELIB}/sympy/physics/quantum/operator.pyc
${PYSITELIB}/sympy/physics/quantum/operator.pyo
${PYSITELIB}/sympy/physics/quantum/operatorset.py
${PYSITELIB}/sympy/physics/quantum/operatorset.pyc
${PYSITELIB}/sympy/physics/quantum/operatorset.pyo
${PYSITELIB}/sympy/physics/quantum/piab.py
${PYSITELIB}/sympy/physics/quantum/piab.pyc
${PYSITELIB}/sympy/physics/quantum/piab.pyo
${PYSITELIB}/sympy/physics/quantum/qapply.py
${PYSITELIB}/sympy/physics/quantum/qapply.pyc
${PYSITELIB}/sympy/physics/quantum/qapply.pyo
${PYSITELIB}/sympy/physics/quantum/qasm.py
${PYSITELIB}/sympy/physics/quantum/qasm.pyc
${PYSITELIB}/sympy/physics/quantum/qasm.pyo
${PYSITELIB}/sympy/physics/quantum/qexpr.py
${PYSITELIB}/sympy/physics/quantum/qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/qexpr.pyo
${PYSITELIB}/sympy/physics/quantum/qft.py
${PYSITELIB}/sympy/physics/quantum/qft.pyc
${PYSITELIB}/sympy/physics/quantum/qft.pyo
${PYSITELIB}/sympy/physics/quantum/qubit.py
${PYSITELIB}/sympy/physics/quantum/qubit.pyc
${PYSITELIB}/sympy/physics/quantum/qubit.pyo
${PYSITELIB}/sympy/physics/quantum/represent.py
${PYSITELIB}/sympy/physics/quantum/represent.pyc
${PYSITELIB}/sympy/physics/quantum/represent.pyo
${PYSITELIB}/sympy/physics/quantum/sho1d.py
${PYSITELIB}/sympy/physics/quantum/sho1d.pyc
${PYSITELIB}/sympy/physics/quantum/sho1d.pyo
${PYSITELIB}/sympy/physics/quantum/shor.py
${PYSITELIB}/sympy/physics/quantum/shor.pyc
${PYSITELIB}/sympy/physics/quantum/shor.pyo
${PYSITELIB}/sympy/physics/quantum/spin.py
${PYSITELIB}/sympy/physics/quantum/spin.pyc
${PYSITELIB}/sympy/physics/quantum/spin.pyo
${PYSITELIB}/sympy/physics/quantum/state.py
${PYSITELIB}/sympy/physics/quantum/state.pyc
${PYSITELIB}/sympy/physics/quantum/state.pyo
${PYSITELIB}/sympy/physics/quantum/tensorproduct.py
${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tensorproduct.pyo
${PYSITELIB}/sympy/physics/quantum/tests/__init__.py
${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyc
${PYSITELIB}/sympy/physics/quantum/tests/__init__.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_anticommutator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.py
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_cartesian.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.py
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_cg.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitplot.py
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitplot.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitplot.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.py
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_circuitutils.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_commutator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.py
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_constants.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.py
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_dagger.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_density.py
${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_density.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.py
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_gate.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.py
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_grover.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.py
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_hilbert.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.py
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_identitysearch.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.py
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_innerproduct.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.py
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_matrixutils.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.py
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_operator.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.py
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_operatorset.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.py
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_piab.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.py
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_printing.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qapply.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qasm.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qexpr.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qft.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.py
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_qubit.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.py
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_represent.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.py
${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_sho1d.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.py
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_shor.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.py
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_spin.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_state.py
${PYSITELIB}/sympy/physics/quantum/tests/test_state.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_state.pyo
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.py
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.pyc
${PYSITELIB}/sympy/physics/quantum/tests/test_tensorproduct.pyo
${PYSITELIB}/sympy/physics/secondquant.py
${PYSITELIB}/sympy/physics/secondquant.pyc
${PYSITELIB}/sympy/physics/secondquant.pyo
${PYSITELIB}/sympy/physics/sho.py
${PYSITELIB}/sympy/physics/sho.pyc
${PYSITELIB}/sympy/physics/sho.pyo
${PYSITELIB}/sympy/physics/tests/__init__.py
${PYSITELIB}/sympy/physics/tests/__init__.pyc
${PYSITELIB}/sympy/physics/tests/__init__.pyo
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.py
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyc
${PYSITELIB}/sympy/physics/tests/test_clebsch_gordan.pyo
${PYSITELIB}/sympy/physics/tests/test_gaussopt.py
${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyc
${PYSITELIB}/sympy/physics/tests/test_gaussopt.pyo
${PYSITELIB}/sympy/physics/tests/test_hydrogen.py
${PYSITELIB}/sympy/physics/tests/test_hydrogen.pyc
${PYSITELIB}/sympy/physics/tests/test_hydrogen.pyo
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.py
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.pyc
${PYSITELIB}/sympy/physics/tests/test_paulialgebra.pyo
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.py
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.pyc
${PYSITELIB}/sympy/physics/tests/test_physics_matrices.pyo
${PYSITELIB}/sympy/physics/tests/test_qho_1d.py
${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyc
${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyo
${PYSITELIB}/sympy/physics/tests/test_secondquant.py
${PYSITELIB}/sympy/physics/tests/test_secondquant.pyc
${PYSITELIB}/sympy/physics/tests/test_secondquant.pyo
${PYSITELIB}/sympy/physics/tests/test_sho.py
${PYSITELIB}/sympy/physics/tests/test_sho.pyc
${PYSITELIB}/sympy/physics/tests/test_sho.pyo
${PYSITELIB}/sympy/physics/tests/test_units.py
${PYSITELIB}/sympy/physics/tests/test_units.pyc
${PYSITELIB}/sympy/physics/tests/test_units.pyo
${PYSITELIB}/sympy/physics/units.py
${PYSITELIB}/sympy/physics/units.pyc
${PYSITELIB}/sympy/physics/units.pyo
${PYSITELIB}/sympy/physics/wigner.py
${PYSITELIB}/sympy/physics/wigner.pyc
${PYSITELIB}/sympy/physics/wigner.pyo
${PYSITELIB}/sympy/plotting/__init__.py
${PYSITELIB}/sympy/plotting/__init__.pyc
${PYSITELIB}/sympy/plotting/__init__.pyo
${PYSITELIB}/sympy/plotting/experimental_lambdify.py
${PYSITELIB}/sympy/plotting/experimental_lambdify.pyc
${PYSITELIB}/sympy/plotting/experimental_lambdify.pyo
${PYSITELIB}/sympy/plotting/intervalmath/__init__.py
${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyc
${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyo
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc
${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc
${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc
${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo
${PYSITELIB}/sympy/plotting/plot.py
${PYSITELIB}/sympy/plotting/plot.pyc
${PYSITELIB}/sympy/plotting/plot.pyo
${PYSITELIB}/sympy/plotting/plot_implicit.py
${PYSITELIB}/sympy/plotting/plot_implicit.pyc
${PYSITELIB}/sympy/plotting/plot_implicit.pyo
${PYSITELIB}/sympy/plotting/proxy_pyglet.py
${PYSITELIB}/sympy/plotting/proxy_pyglet.pyc
${PYSITELIB}/sympy/plotting/proxy_pyglet.pyo
${PYSITELIB}/sympy/plotting/pygletplot/__init__.py
${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyc
${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyo
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.py
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyc
${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.pyo
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.py
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyc
${PYSITELIB}/sympy/plotting/pygletplot/managed_window.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot.py
${PYSITELIB}/sympy/plotting/pygletplot/plot.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_axes.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_camera.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_controller.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_curve.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_interval.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_mode_base.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_modes.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_object.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_rotation.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_surface.pyo
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.py
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyc
${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyo
${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.py
${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyc
${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyo
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.py
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyc
${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyo
${PYSITELIB}/sympy/plotting/pygletplot/util.py
${PYSITELIB}/sympy/plotting/pygletplot/util.pyc
${PYSITELIB}/sympy/plotting/pygletplot/util.pyo
${PYSITELIB}/sympy/plotting/tests/__init__.py
${PYSITELIB}/sympy/plotting/tests/__init__.pyc
${PYSITELIB}/sympy/plotting/tests/__init__.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot.py
${PYSITELIB}/sympy/plotting/tests/test_plot.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot.pyo
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc
${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo
${PYSITELIB}/sympy/plotting/textplot.py
${PYSITELIB}/sympy/plotting/textplot.pyc
${PYSITELIB}/sympy/plotting/textplot.pyo
${PYSITELIB}/sympy/polys/__init__.py
${PYSITELIB}/sympy/polys/__init__.pyc
${PYSITELIB}/sympy/polys/__init__.pyo
${PYSITELIB}/sympy/polys/agca/__init__.py
${PYSITELIB}/sympy/polys/agca/__init__.pyc
${PYSITELIB}/sympy/polys/agca/__init__.pyo
${PYSITELIB}/sympy/polys/agca/homomorphisms.py
${PYSITELIB}/sympy/polys/agca/homomorphisms.pyc
${PYSITELIB}/sympy/polys/agca/homomorphisms.pyo
${PYSITELIB}/sympy/polys/agca/ideals.py
${PYSITELIB}/sympy/polys/agca/ideals.pyc
${PYSITELIB}/sympy/polys/agca/ideals.pyo
${PYSITELIB}/sympy/polys/agca/modules.py
${PYSITELIB}/sympy/polys/agca/modules.pyc
${PYSITELIB}/sympy/polys/agca/modules.pyo
${PYSITELIB}/sympy/polys/agca/tests/__init__.py
${PYSITELIB}/sympy/polys/agca/tests/__init__.pyc
${PYSITELIB}/sympy/polys/agca/tests/__init__.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.py
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_homomorphisms.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.py
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_ideals.pyo
${PYSITELIB}/sympy/polys/agca/tests/test_modules.py
${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyc
${PYSITELIB}/sympy/polys/agca/tests/test_modules.pyo
${PYSITELIB}/sympy/polys/compatibility.py
${PYSITELIB}/sympy/polys/compatibility.pyc
${PYSITELIB}/sympy/polys/compatibility.pyo
${PYSITELIB}/sympy/polys/constructor.py
${PYSITELIB}/sympy/polys/constructor.pyc
${PYSITELIB}/sympy/polys/constructor.pyo
${PYSITELIB}/sympy/polys/densearith.py
${PYSITELIB}/sympy/polys/densearith.pyc
${PYSITELIB}/sympy/polys/densearith.pyo
${PYSITELIB}/sympy/polys/densebasic.py
${PYSITELIB}/sympy/polys/densebasic.pyc
${PYSITELIB}/sympy/polys/densebasic.pyo
${PYSITELIB}/sympy/polys/densetools.py
${PYSITELIB}/sympy/polys/densetools.pyc
${PYSITELIB}/sympy/polys/densetools.pyo
${PYSITELIB}/sympy/polys/distributedmodules.py
${PYSITELIB}/sympy/polys/distributedmodules.pyc
${PYSITELIB}/sympy/polys/distributedmodules.pyo
${PYSITELIB}/sympy/polys/domains/__init__.py
${PYSITELIB}/sympy/polys/domains/__init__.pyc
${PYSITELIB}/sympy/polys/domains/__init__.pyo
${PYSITELIB}/sympy/polys/domains/algebraicfield.py
${PYSITELIB}/sympy/polys/domains/algebraicfield.pyc
${PYSITELIB}/sympy/polys/domains/algebraicfield.pyo
${PYSITELIB}/sympy/polys/domains/characteristiczero.py
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyc
${PYSITELIB}/sympy/polys/domains/characteristiczero.pyo
${PYSITELIB}/sympy/polys/domains/complexfield.py
${PYSITELIB}/sympy/polys/domains/complexfield.pyc
${PYSITELIB}/sympy/polys/domains/complexfield.pyo
${PYSITELIB}/sympy/polys/domains/compositedomain.py
${PYSITELIB}/sympy/polys/domains/compositedomain.pyc
${PYSITELIB}/sympy/polys/domains/compositedomain.pyo
${PYSITELIB}/sympy/polys/domains/domain.py
${PYSITELIB}/sympy/polys/domains/domain.pyc
${PYSITELIB}/sympy/polys/domains/domain.pyo
${PYSITELIB}/sympy/polys/domains/domainelement.py
${PYSITELIB}/sympy/polys/domains/domainelement.pyc
${PYSITELIB}/sympy/polys/domains/domainelement.pyo
${PYSITELIB}/sympy/polys/domains/expressiondomain.py
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyc
${PYSITELIB}/sympy/polys/domains/expressiondomain.pyo
${PYSITELIB}/sympy/polys/domains/field.py
${PYSITELIB}/sympy/polys/domains/field.pyc
${PYSITELIB}/sympy/polys/domains/field.pyo
${PYSITELIB}/sympy/polys/domains/finitefield.py
${PYSITELIB}/sympy/polys/domains/finitefield.pyc
${PYSITELIB}/sympy/polys/domains/finitefield.pyo
${PYSITELIB}/sympy/polys/domains/fractionfield.py
${PYSITELIB}/sympy/polys/domains/fractionfield.pyc
${PYSITELIB}/sympy/polys/domains/fractionfield.pyo
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.py
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/gmpyfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.py
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.pyc
${PYSITELIB}/sympy/polys/domains/gmpyintegerring.pyo
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.py
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/gmpyrationalfield.pyo
${PYSITELIB}/sympy/polys/domains/groundtypes.py
${PYSITELIB}/sympy/polys/domains/groundtypes.pyc
${PYSITELIB}/sympy/polys/domains/groundtypes.pyo
${PYSITELIB}/sympy/polys/domains/integerring.py
${PYSITELIB}/sympy/polys/domains/integerring.pyc
${PYSITELIB}/sympy/polys/domains/integerring.pyo
${PYSITELIB}/sympy/polys/domains/modularinteger.py
${PYSITELIB}/sympy/polys/domains/modularinteger.pyc
${PYSITELIB}/sympy/polys/domains/modularinteger.pyo
${PYSITELIB}/sympy/polys/domains/mpelements.py
${PYSITELIB}/sympy/polys/domains/mpelements.pyc
${PYSITELIB}/sympy/polys/domains/mpelements.pyo
${PYSITELIB}/sympy/polys/domains/old_fractionfield.py
${PYSITELIB}/sympy/polys/domains/old_fractionfield.pyc
${PYSITELIB}/sympy/polys/domains/old_fractionfield.pyo
${PYSITELIB}/sympy/polys/domains/old_polynomialring.py
${PYSITELIB}/sympy/polys/domains/old_polynomialring.pyc
${PYSITELIB}/sympy/polys/domains/old_polynomialring.pyo
${PYSITELIB}/sympy/polys/domains/polynomialring.py
${PYSITELIB}/sympy/polys/domains/polynomialring.pyc
${PYSITELIB}/sympy/polys/domains/polynomialring.pyo
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.py
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyc
${PYSITELIB}/sympy/polys/domains/pythonfinitefield.pyo
${PYSITELIB}/sympy/polys/domains/pythonintegerring.py
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyc
${PYSITELIB}/sympy/polys/domains/pythonintegerring.pyo
${PYSITELIB}/sympy/polys/domains/pythonrational.py
${PYSITELIB}/sympy/polys/domains/pythonrational.pyc
${PYSITELIB}/sympy/polys/domains/pythonrational.pyo
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.py
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyc
${PYSITELIB}/sympy/polys/domains/pythonrationalfield.pyo
${PYSITELIB}/sympy/polys/domains/quotientring.py
${PYSITELIB}/sympy/polys/domains/quotientring.pyc
${PYSITELIB}/sympy/polys/domains/quotientring.pyo
${PYSITELIB}/sympy/polys/domains/rationalfield.py
${PYSITELIB}/sympy/polys/domains/rationalfield.pyc
${PYSITELIB}/sympy/polys/domains/rationalfield.pyo
${PYSITELIB}/sympy/polys/domains/realfield.py
${PYSITELIB}/sympy/polys/domains/realfield.pyc
${PYSITELIB}/sympy/polys/domains/realfield.pyo
${PYSITELIB}/sympy/polys/domains/ring.py
${PYSITELIB}/sympy/polys/domains/ring.pyc
${PYSITELIB}/sympy/polys/domains/ring.pyo
${PYSITELIB}/sympy/polys/domains/simpledomain.py
${PYSITELIB}/sympy/polys/domains/simpledomain.pyc
${PYSITELIB}/sympy/polys/domains/simpledomain.pyo
${PYSITELIB}/sympy/polys/domains/tests/__init__.py
${PYSITELIB}/sympy/polys/domains/tests/__init__.pyc
${PYSITELIB}/sympy/polys/domains/tests/__init__.pyo
${PYSITELIB}/sympy/polys/domains/tests/test_domains.py
${PYSITELIB}/sympy/polys/domains/tests/test_domains.pyc
${PYSITELIB}/sympy/polys/domains/tests/test_domains.pyo
${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.py
${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.pyc
${PYSITELIB}/sympy/polys/domains/tests/test_polynomialring.pyo
${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.py
${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.pyc
${PYSITELIB}/sympy/polys/domains/tests/test_quotientring.pyo
${PYSITELIB}/sympy/polys/euclidtools.py
${PYSITELIB}/sympy/polys/euclidtools.pyc
${PYSITELIB}/sympy/polys/euclidtools.pyo
${PYSITELIB}/sympy/polys/factortools.py
${PYSITELIB}/sympy/polys/factortools.pyc
${PYSITELIB}/sympy/polys/factortools.pyo
${PYSITELIB}/sympy/polys/fglmtools.py
${PYSITELIB}/sympy/polys/fglmtools.pyc
${PYSITELIB}/sympy/polys/fglmtools.pyo
${PYSITELIB}/sympy/polys/fields.py
${PYSITELIB}/sympy/polys/fields.pyc
${PYSITELIB}/sympy/polys/fields.pyo
${PYSITELIB}/sympy/polys/galoistools.py
${PYSITELIB}/sympy/polys/galoistools.pyc
${PYSITELIB}/sympy/polys/galoistools.pyo
${PYSITELIB}/sympy/polys/groebnertools.py
${PYSITELIB}/sympy/polys/groebnertools.pyc
${PYSITELIB}/sympy/polys/groebnertools.pyo
${PYSITELIB}/sympy/polys/heuristicgcd.py
${PYSITELIB}/sympy/polys/heuristicgcd.pyc
${PYSITELIB}/sympy/polys/heuristicgcd.pyo
${PYSITELIB}/sympy/polys/modulargcd.py
${PYSITELIB}/sympy/polys/modulargcd.pyc
${PYSITELIB}/sympy/polys/modulargcd.pyo
${PYSITELIB}/sympy/polys/monomials.py
${PYSITELIB}/sympy/polys/monomials.pyc
${PYSITELIB}/sympy/polys/monomials.pyo
${PYSITELIB}/sympy/polys/numberfields.py
${PYSITELIB}/sympy/polys/numberfields.pyc
${PYSITELIB}/sympy/polys/numberfields.pyo
${PYSITELIB}/sympy/polys/orderings.py
${PYSITELIB}/sympy/polys/orderings.pyc
${PYSITELIB}/sympy/polys/orderings.pyo
${PYSITELIB}/sympy/polys/orthopolys.py
${PYSITELIB}/sympy/polys/orthopolys.pyc
${PYSITELIB}/sympy/polys/orthopolys.pyo
${PYSITELIB}/sympy/polys/partfrac.py
${PYSITELIB}/sympy/polys/partfrac.pyc
${PYSITELIB}/sympy/polys/partfrac.pyo
${PYSITELIB}/sympy/polys/polyclasses.py
${PYSITELIB}/sympy/polys/polyclasses.pyc
${PYSITELIB}/sympy/polys/polyclasses.pyo
${PYSITELIB}/sympy/polys/polyconfig.py
${PYSITELIB}/sympy/polys/polyconfig.pyc
${PYSITELIB}/sympy/polys/polyconfig.pyo
${PYSITELIB}/sympy/polys/polycontext.py
${PYSITELIB}/sympy/polys/polycontext.pyc
${PYSITELIB}/sympy/polys/polycontext.pyo
${PYSITELIB}/sympy/polys/polyerrors.py
${PYSITELIB}/sympy/polys/polyerrors.pyc
${PYSITELIB}/sympy/polys/polyerrors.pyo
${PYSITELIB}/sympy/polys/polyfuncs.py
${PYSITELIB}/sympy/polys/polyfuncs.pyc
${PYSITELIB}/sympy/polys/polyfuncs.pyo
${PYSITELIB}/sympy/polys/polyoptions.py
${PYSITELIB}/sympy/polys/polyoptions.pyc
${PYSITELIB}/sympy/polys/polyoptions.pyo
${PYSITELIB}/sympy/polys/polyquinticconst.py
${PYSITELIB}/sympy/polys/polyquinticconst.pyc
${PYSITELIB}/sympy/polys/polyquinticconst.pyo
${PYSITELIB}/sympy/polys/polyroots.py
${PYSITELIB}/sympy/polys/polyroots.pyc
${PYSITELIB}/sympy/polys/polyroots.pyo
${PYSITELIB}/sympy/polys/polytools.py
${PYSITELIB}/sympy/polys/polytools.pyc
${PYSITELIB}/sympy/polys/polytools.pyo
${PYSITELIB}/sympy/polys/polyutils.py
${PYSITELIB}/sympy/polys/polyutils.pyc
${PYSITELIB}/sympy/polys/polyutils.pyo
${PYSITELIB}/sympy/polys/rationaltools.py
${PYSITELIB}/sympy/polys/rationaltools.pyc
${PYSITELIB}/sympy/polys/rationaltools.pyo
${PYSITELIB}/sympy/polys/rings.py
${PYSITELIB}/sympy/polys/rings.pyc
${PYSITELIB}/sympy/polys/rings.pyo
${PYSITELIB}/sympy/polys/rootisolation.py
${PYSITELIB}/sympy/polys/rootisolation.pyc
${PYSITELIB}/sympy/polys/rootisolation.pyo
${PYSITELIB}/sympy/polys/rootoftools.py
${PYSITELIB}/sympy/polys/rootoftools.pyc
${PYSITELIB}/sympy/polys/rootoftools.pyo
${PYSITELIB}/sympy/polys/solvers.py
${PYSITELIB}/sympy/polys/solvers.pyc
${PYSITELIB}/sympy/polys/solvers.pyo
${PYSITELIB}/sympy/polys/specialpolys.py
${PYSITELIB}/sympy/polys/specialpolys.pyc
${PYSITELIB}/sympy/polys/specialpolys.pyo
${PYSITELIB}/sympy/polys/sqfreetools.py
${PYSITELIB}/sympy/polys/sqfreetools.pyc
${PYSITELIB}/sympy/polys/sqfreetools.pyo
${PYSITELIB}/sympy/polys/tests/__init__.py
${PYSITELIB}/sympy/polys/tests/__init__.pyc
${PYSITELIB}/sympy/polys/tests/__init__.pyo
${PYSITELIB}/sympy/polys/tests/test_constructor.py
${PYSITELIB}/sympy/polys/tests/test_constructor.pyc
${PYSITELIB}/sympy/polys/tests/test_constructor.pyo
${PYSITELIB}/sympy/polys/tests/test_densearith.py
${PYSITELIB}/sympy/polys/tests/test_densearith.pyc
${PYSITELIB}/sympy/polys/tests/test_densearith.pyo
${PYSITELIB}/sympy/polys/tests/test_densebasic.py
${PYSITELIB}/sympy/polys/tests/test_densebasic.pyc
${PYSITELIB}/sympy/polys/tests/test_densebasic.pyo
${PYSITELIB}/sympy/polys/tests/test_densetools.py
${PYSITELIB}/sympy/polys/tests/test_densetools.pyc
${PYSITELIB}/sympy/polys/tests/test_densetools.pyo
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.py
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyc
${PYSITELIB}/sympy/polys/tests/test_distributedmodules.pyo
${PYSITELIB}/sympy/polys/tests/test_euclidtools.py
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyc
${PYSITELIB}/sympy/polys/tests/test_euclidtools.pyo
${PYSITELIB}/sympy/polys/tests/test_factortools.py
${PYSITELIB}/sympy/polys/tests/test_factortools.pyc
${PYSITELIB}/sympy/polys/tests/test_factortools.pyo
${PYSITELIB}/sympy/polys/tests/test_fields.py
${PYSITELIB}/sympy/polys/tests/test_fields.pyc
${PYSITELIB}/sympy/polys/tests/test_fields.pyo
${PYSITELIB}/sympy/polys/tests/test_galoistools.py
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyc
${PYSITELIB}/sympy/polys/tests/test_galoistools.pyo
${PYSITELIB}/sympy/polys/tests/test_groebnertools.py
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyc
${PYSITELIB}/sympy/polys/tests/test_groebnertools.pyo
${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.py
${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.pyc
${PYSITELIB}/sympy/polys/tests/test_heuristicgcd.pyo
${PYSITELIB}/sympy/polys/tests/test_injections.py
${PYSITELIB}/sympy/polys/tests/test_injections.pyc
${PYSITELIB}/sympy/polys/tests/test_injections.pyo
${PYSITELIB}/sympy/polys/tests/test_modulargcd.py
${PYSITELIB}/sympy/polys/tests/test_modulargcd.pyc
${PYSITELIB}/sympy/polys/tests/test_modulargcd.pyo
${PYSITELIB}/sympy/polys/tests/test_monomials.py
${PYSITELIB}/sympy/polys/tests/test_monomials.pyc
${PYSITELIB}/sympy/polys/tests/test_monomials.pyo
${PYSITELIB}/sympy/polys/tests/test_numberfields.py
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyc
${PYSITELIB}/sympy/polys/tests/test_numberfields.pyo
${PYSITELIB}/sympy/polys/tests/test_orderings.py
${PYSITELIB}/sympy/polys/tests/test_orderings.pyc
${PYSITELIB}/sympy/polys/tests/test_orderings.pyo
${PYSITELIB}/sympy/polys/tests/test_orthopolys.py
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyc
${PYSITELIB}/sympy/polys/tests/test_orthopolys.pyo
${PYSITELIB}/sympy/polys/tests/test_partfrac.py
${PYSITELIB}/sympy/polys/tests/test_partfrac.pyc
${PYSITELIB}/sympy/polys/tests/test_partfrac.pyo
${PYSITELIB}/sympy/polys/tests/test_polyclasses.py
${PYSITELIB}/sympy/polys/tests/test_polyclasses.pyc
${PYSITELIB}/sympy/polys/tests/test_polyclasses.pyo
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.py
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyc
${PYSITELIB}/sympy/polys/tests/test_polyfuncs.pyo
${PYSITELIB}/sympy/polys/tests/test_polyoptions.py
${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyc
${PYSITELIB}/sympy/polys/tests/test_polyoptions.pyo
${PYSITELIB}/sympy/polys/tests/test_polyroots.py
${PYSITELIB}/sympy/polys/tests/test_polyroots.pyc
${PYSITELIB}/sympy/polys/tests/test_polyroots.pyo
${PYSITELIB}/sympy/polys/tests/test_polytools.py
${PYSITELIB}/sympy/polys/tests/test_polytools.pyc
${PYSITELIB}/sympy/polys/tests/test_polytools.pyo
${PYSITELIB}/sympy/polys/tests/test_polyutils.py
${PYSITELIB}/sympy/polys/tests/test_polyutils.pyc
${PYSITELIB}/sympy/polys/tests/test_polyutils.pyo
${PYSITELIB}/sympy/polys/tests/test_pythonrational.py
${PYSITELIB}/sympy/polys/tests/test_pythonrational.pyc
${PYSITELIB}/sympy/polys/tests/test_pythonrational.pyo
${PYSITELIB}/sympy/polys/tests/test_rationaltools.py
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyc
${PYSITELIB}/sympy/polys/tests/test_rationaltools.pyo
${PYSITELIB}/sympy/polys/tests/test_rings.py
${PYSITELIB}/sympy/polys/tests/test_rings.pyc
${PYSITELIB}/sympy/polys/tests/test_rings.pyo
${PYSITELIB}/sympy/polys/tests/test_rootisolation.py
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyc
${PYSITELIB}/sympy/polys/tests/test_rootisolation.pyo
${PYSITELIB}/sympy/polys/tests/test_rootoftools.py
${PYSITELIB}/sympy/polys/tests/test_rootoftools.pyc
${PYSITELIB}/sympy/polys/tests/test_rootoftools.pyo
${PYSITELIB}/sympy/polys/tests/test_solvers.py
${PYSITELIB}/sympy/polys/tests/test_solvers.pyc
${PYSITELIB}/sympy/polys/tests/test_solvers.pyo
${PYSITELIB}/sympy/polys/tests/test_specialpolys.py
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyc
${PYSITELIB}/sympy/polys/tests/test_specialpolys.pyo
${PYSITELIB}/sympy/polys/tests/test_sqfreetools.py
${PYSITELIB}/sympy/polys/tests/test_sqfreetools.pyc
${PYSITELIB}/sympy/polys/tests/test_sqfreetools.pyo
${PYSITELIB}/sympy/printing/__init__.py
${PYSITELIB}/sympy/printing/__init__.pyc
${PYSITELIB}/sympy/printing/__init__.pyo
${PYSITELIB}/sympy/printing/ccode.py
${PYSITELIB}/sympy/printing/ccode.pyc
${PYSITELIB}/sympy/printing/ccode.pyo
${PYSITELIB}/sympy/printing/codeprinter.py
${PYSITELIB}/sympy/printing/codeprinter.pyc
${PYSITELIB}/sympy/printing/codeprinter.pyo
${PYSITELIB}/sympy/printing/conventions.py
${PYSITELIB}/sympy/printing/conventions.pyc
${PYSITELIB}/sympy/printing/conventions.pyo
${PYSITELIB}/sympy/printing/defaults.py
${PYSITELIB}/sympy/printing/defaults.pyc
${PYSITELIB}/sympy/printing/defaults.pyo
${PYSITELIB}/sympy/printing/dot.py
${PYSITELIB}/sympy/printing/dot.pyc
${PYSITELIB}/sympy/printing/dot.pyo
${PYSITELIB}/sympy/printing/fcode.py
${PYSITELIB}/sympy/printing/fcode.pyc
${PYSITELIB}/sympy/printing/fcode.pyo
${PYSITELIB}/sympy/printing/gtk.py
${PYSITELIB}/sympy/printing/gtk.pyc
${PYSITELIB}/sympy/printing/gtk.pyo
${PYSITELIB}/sympy/printing/jscode.py
${PYSITELIB}/sympy/printing/jscode.pyc
${PYSITELIB}/sympy/printing/jscode.pyo
${PYSITELIB}/sympy/printing/lambdarepr.py
${PYSITELIB}/sympy/printing/lambdarepr.pyc
${PYSITELIB}/sympy/printing/lambdarepr.pyo
${PYSITELIB}/sympy/printing/latex.py
${PYSITELIB}/sympy/printing/latex.pyc
${PYSITELIB}/sympy/printing/latex.pyo
${PYSITELIB}/sympy/printing/mathml.py
${PYSITELIB}/sympy/printing/mathml.pyc
${PYSITELIB}/sympy/printing/mathml.pyo
${PYSITELIB}/sympy/printing/precedence.py
${PYSITELIB}/sympy/printing/precedence.pyc
${PYSITELIB}/sympy/printing/precedence.pyo
${PYSITELIB}/sympy/printing/pretty/__init__.py
${PYSITELIB}/sympy/printing/pretty/__init__.pyc
${PYSITELIB}/sympy/printing/pretty/__init__.pyo
${PYSITELIB}/sympy/printing/pretty/pretty.py
${PYSITELIB}/sympy/printing/pretty/pretty.pyc
${PYSITELIB}/sympy/printing/pretty/pretty.pyo
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.py
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.pyc
${PYSITELIB}/sympy/printing/pretty/pretty_symbology.pyo
${PYSITELIB}/sympy/printing/pretty/stringpict.py
${PYSITELIB}/sympy/printing/pretty/stringpict.pyc
${PYSITELIB}/sympy/printing/pretty/stringpict.pyo
${PYSITELIB}/sympy/printing/pretty/tests/__init__.py
${PYSITELIB}/sympy/printing/pretty/tests/__init__.pyc
${PYSITELIB}/sympy/printing/pretty/tests/__init__.pyo
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.py
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyc
${PYSITELIB}/sympy/printing/pretty/tests/test_pretty.pyo
${PYSITELIB}/sympy/printing/preview.py
${PYSITELIB}/sympy/printing/preview.pyc
${PYSITELIB}/sympy/printing/preview.pyo
${PYSITELIB}/sympy/printing/printer.py
${PYSITELIB}/sympy/printing/printer.pyc
${PYSITELIB}/sympy/printing/printer.pyo
${PYSITELIB}/sympy/printing/python.py
${PYSITELIB}/sympy/printing/python.pyc
${PYSITELIB}/sympy/printing/python.pyo
${PYSITELIB}/sympy/printing/repr.py
${PYSITELIB}/sympy/printing/repr.pyc
${PYSITELIB}/sympy/printing/repr.pyo
${PYSITELIB}/sympy/printing/str.py
${PYSITELIB}/sympy/printing/str.pyc
${PYSITELIB}/sympy/printing/str.pyo
${PYSITELIB}/sympy/printing/tableform.py
${PYSITELIB}/sympy/printing/tableform.pyc
${PYSITELIB}/sympy/printing/tableform.pyo
${PYSITELIB}/sympy/printing/tests/__init__.py
${PYSITELIB}/sympy/printing/tests/__init__.pyc
${PYSITELIB}/sympy/printing/tests/__init__.pyo
${PYSITELIB}/sympy/printing/tests/test_ccode.py
${PYSITELIB}/sympy/printing/tests/test_ccode.pyc
${PYSITELIB}/sympy/printing/tests/test_ccode.pyo
${PYSITELIB}/sympy/printing/tests/test_codeprinter.py
${PYSITELIB}/sympy/printing/tests/test_codeprinter.pyc
${PYSITELIB}/sympy/printing/tests/test_codeprinter.pyo
${PYSITELIB}/sympy/printing/tests/test_conventions.py
${PYSITELIB}/sympy/printing/tests/test_conventions.pyc
${PYSITELIB}/sympy/printing/tests/test_conventions.pyo
${PYSITELIB}/sympy/printing/tests/test_dot.py
${PYSITELIB}/sympy/printing/tests/test_dot.pyc
${PYSITELIB}/sympy/printing/tests/test_dot.pyo
${PYSITELIB}/sympy/printing/tests/test_fcode.py
${PYSITELIB}/sympy/printing/tests/test_fcode.pyc
${PYSITELIB}/sympy/printing/tests/test_fcode.pyo
${PYSITELIB}/sympy/printing/tests/test_gtk.py
${PYSITELIB}/sympy/printing/tests/test_gtk.pyc
${PYSITELIB}/sympy/printing/tests/test_gtk.pyo
${PYSITELIB}/sympy/printing/tests/test_jscode.py
${PYSITELIB}/sympy/printing/tests/test_jscode.pyc
${PYSITELIB}/sympy/printing/tests/test_jscode.pyo
${PYSITELIB}/sympy/printing/tests/test_lambdarepr.py
${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyc
${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyo
${PYSITELIB}/sympy/printing/tests/test_latex.py
${PYSITELIB}/sympy/printing/tests/test_latex.pyc
${PYSITELIB}/sympy/printing/tests/test_latex.pyo
${PYSITELIB}/sympy/printing/tests/test_mathml.py
${PYSITELIB}/sympy/printing/tests/test_mathml.pyc
${PYSITELIB}/sympy/printing/tests/test_mathml.pyo
${PYSITELIB}/sympy/printing/tests/test_precedence.py
${PYSITELIB}/sympy/printing/tests/test_precedence.pyc
${PYSITELIB}/sympy/printing/tests/test_precedence.pyo
${PYSITELIB}/sympy/printing/tests/test_python.py
${PYSITELIB}/sympy/printing/tests/test_python.pyc
${PYSITELIB}/sympy/printing/tests/test_python.pyo
${PYSITELIB}/sympy/printing/tests/test_repr.py
${PYSITELIB}/sympy/printing/tests/test_repr.pyc
${PYSITELIB}/sympy/printing/tests/test_repr.pyo
${PYSITELIB}/sympy/printing/tests/test_str.py
${PYSITELIB}/sympy/printing/tests/test_str.pyc
${PYSITELIB}/sympy/printing/tests/test_str.pyo
${PYSITELIB}/sympy/printing/tests/test_tableform.py
${PYSITELIB}/sympy/printing/tests/test_tableform.pyc
${PYSITELIB}/sympy/printing/tests/test_tableform.pyo
${PYSITELIB}/sympy/printing/tests/test_theanocode.py
${PYSITELIB}/sympy/printing/tests/test_theanocode.pyc
${PYSITELIB}/sympy/printing/tests/test_theanocode.pyo
${PYSITELIB}/sympy/printing/theanocode.py
${PYSITELIB}/sympy/printing/theanocode.pyc
${PYSITELIB}/sympy/printing/theanocode.pyo
${PYSITELIB}/sympy/printing/tree.py
${PYSITELIB}/sympy/printing/tree.pyc
${PYSITELIB}/sympy/printing/tree.pyo
${PYSITELIB}/sympy/series/__init__.py
${PYSITELIB}/sympy/series/__init__.pyc
${PYSITELIB}/sympy/series/__init__.pyo
${PYSITELIB}/sympy/series/acceleration.py
${PYSITELIB}/sympy/series/acceleration.pyc
${PYSITELIB}/sympy/series/acceleration.pyo
${PYSITELIB}/sympy/series/gruntz.py
${PYSITELIB}/sympy/series/gruntz.pyc
${PYSITELIB}/sympy/series/gruntz.pyo
${PYSITELIB}/sympy/series/kauers.py
${PYSITELIB}/sympy/series/kauers.pyc
${PYSITELIB}/sympy/series/kauers.pyo
${PYSITELIB}/sympy/series/limits.py
${PYSITELIB}/sympy/series/limits.pyc
${PYSITELIB}/sympy/series/limits.pyo
${PYSITELIB}/sympy/series/order.py
${PYSITELIB}/sympy/series/order.pyc
${PYSITELIB}/sympy/series/order.pyo
${PYSITELIB}/sympy/series/residues.py
${PYSITELIB}/sympy/series/residues.pyc
${PYSITELIB}/sympy/series/residues.pyo
${PYSITELIB}/sympy/series/series.py
${PYSITELIB}/sympy/series/series.pyc
${PYSITELIB}/sympy/series/series.pyo
${PYSITELIB}/sympy/series/tests/__init__.py
${PYSITELIB}/sympy/series/tests/__init__.pyc
${PYSITELIB}/sympy/series/tests/__init__.pyo
${PYSITELIB}/sympy/series/tests/test_demidovich.py
${PYSITELIB}/sympy/series/tests/test_demidovich.pyc
${PYSITELIB}/sympy/series/tests/test_demidovich.pyo
${PYSITELIB}/sympy/series/tests/test_gruntz.py
${PYSITELIB}/sympy/series/tests/test_gruntz.pyc
${PYSITELIB}/sympy/series/tests/test_gruntz.pyo
${PYSITELIB}/sympy/series/tests/test_kauers.py
${PYSITELIB}/sympy/series/tests/test_kauers.pyc
${PYSITELIB}/sympy/series/tests/test_kauers.pyo
${PYSITELIB}/sympy/series/tests/test_limits.py
${PYSITELIB}/sympy/series/tests/test_limits.pyc
${PYSITELIB}/sympy/series/tests/test_limits.pyo
${PYSITELIB}/sympy/series/tests/test_lseries.py
${PYSITELIB}/sympy/series/tests/test_lseries.pyc
${PYSITELIB}/sympy/series/tests/test_lseries.pyo
${PYSITELIB}/sympy/series/tests/test_nseries.py
${PYSITELIB}/sympy/series/tests/test_nseries.pyc
${PYSITELIB}/sympy/series/tests/test_nseries.pyo
${PYSITELIB}/sympy/series/tests/test_order.py
${PYSITELIB}/sympy/series/tests/test_order.pyc
${PYSITELIB}/sympy/series/tests/test_order.pyo
${PYSITELIB}/sympy/series/tests/test_residues.py
${PYSITELIB}/sympy/series/tests/test_residues.pyc
${PYSITELIB}/sympy/series/tests/test_residues.pyo
${PYSITELIB}/sympy/series/tests/test_series.py
${PYSITELIB}/sympy/series/tests/test_series.pyc
${PYSITELIB}/sympy/series/tests/test_series.pyo
${PYSITELIB}/sympy/sets/__init__.py
${PYSITELIB}/sympy/sets/__init__.pyc
${PYSITELIB}/sympy/sets/__init__.pyo
${PYSITELIB}/sympy/sets/fancysets.py
${PYSITELIB}/sympy/sets/fancysets.pyc
${PYSITELIB}/sympy/sets/fancysets.pyo
${PYSITELIB}/sympy/sets/tests/__init__.py
${PYSITELIB}/sympy/sets/tests/__init__.pyc
${PYSITELIB}/sympy/sets/tests/__init__.pyo
${PYSITELIB}/sympy/sets/tests/test_fancysets.py
${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc
${PYSITELIB}/sympy/sets/tests/test_fancysets.pyo
${PYSITELIB}/sympy/simplify/__init__.py
${PYSITELIB}/sympy/simplify/__init__.pyc
${PYSITELIB}/sympy/simplify/__init__.pyo
${PYSITELIB}/sympy/simplify/cse_main.py
${PYSITELIB}/sympy/simplify/cse_main.pyc
${PYSITELIB}/sympy/simplify/cse_main.pyo
${PYSITELIB}/sympy/simplify/cse_opts.py
${PYSITELIB}/sympy/simplify/cse_opts.pyc
${PYSITELIB}/sympy/simplify/cse_opts.pyo
${PYSITELIB}/sympy/simplify/epathtools.py
${PYSITELIB}/sympy/simplify/epathtools.pyc
${PYSITELIB}/sympy/simplify/epathtools.pyo
${PYSITELIB}/sympy/simplify/fu.py
${PYSITELIB}/sympy/simplify/fu.pyc
${PYSITELIB}/sympy/simplify/fu.pyo
${PYSITELIB}/sympy/simplify/hyperexpand.py
${PYSITELIB}/sympy/simplify/hyperexpand.pyc
${PYSITELIB}/sympy/simplify/hyperexpand.pyo
${PYSITELIB}/sympy/simplify/hyperexpand_doc.py
${PYSITELIB}/sympy/simplify/hyperexpand_doc.pyc
${PYSITELIB}/sympy/simplify/hyperexpand_doc.pyo
${PYSITELIB}/sympy/simplify/simplify.py
${PYSITELIB}/sympy/simplify/simplify.pyc
${PYSITELIB}/sympy/simplify/simplify.pyo
${PYSITELIB}/sympy/simplify/sqrtdenest.py
${PYSITELIB}/sympy/simplify/sqrtdenest.pyc
${PYSITELIB}/sympy/simplify/sqrtdenest.pyo
${PYSITELIB}/sympy/simplify/tests/__init__.py
${PYSITELIB}/sympy/simplify/tests/__init__.pyc
${PYSITELIB}/sympy/simplify/tests/__init__.pyo
${PYSITELIB}/sympy/simplify/tests/test_cse.py
${PYSITELIB}/sympy/simplify/tests/test_cse.pyc
${PYSITELIB}/sympy/simplify/tests/test_cse.pyo
${PYSITELIB}/sympy/simplify/tests/test_epathtools.py
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyc
${PYSITELIB}/sympy/simplify/tests/test_epathtools.pyo
${PYSITELIB}/sympy/simplify/tests/test_fu.py
${PYSITELIB}/sympy/simplify/tests/test_fu.pyc
${PYSITELIB}/sympy/simplify/tests/test_fu.pyo
${PYSITELIB}/sympy/simplify/tests/test_function.py
${PYSITELIB}/sympy/simplify/tests/test_function.pyc
${PYSITELIB}/sympy/simplify/tests/test_function.pyo
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.py
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.pyc
${PYSITELIB}/sympy/simplify/tests/test_hyperexpand.pyo
${PYSITELIB}/sympy/simplify/tests/test_rewrite.py
${PYSITELIB}/sympy/simplify/tests/test_rewrite.pyc
${PYSITELIB}/sympy/simplify/tests/test_rewrite.pyo
${PYSITELIB}/sympy/simplify/tests/test_simplify.py
${PYSITELIB}/sympy/simplify/tests/test_simplify.pyc
${PYSITELIB}/sympy/simplify/tests/test_simplify.pyo
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.py
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.pyc
${PYSITELIB}/sympy/simplify/tests/test_sqrtdenest.pyo
${PYSITELIB}/sympy/simplify/tests/test_traversaltools.py
${PYSITELIB}/sympy/simplify/tests/test_traversaltools.pyc
${PYSITELIB}/sympy/simplify/tests/test_traversaltools.pyo
${PYSITELIB}/sympy/simplify/traversaltools.py
${PYSITELIB}/sympy/simplify/traversaltools.pyc
${PYSITELIB}/sympy/simplify/traversaltools.pyo
${PYSITELIB}/sympy/solvers/__init__.py
${PYSITELIB}/sympy/solvers/__init__.pyc
${PYSITELIB}/sympy/solvers/__init__.pyo
${PYSITELIB}/sympy/solvers/bivariate.py
${PYSITELIB}/sympy/solvers/bivariate.pyc
${PYSITELIB}/sympy/solvers/bivariate.pyo
${PYSITELIB}/sympy/solvers/deutils.py
${PYSITELIB}/sympy/solvers/deutils.pyc
${PYSITELIB}/sympy/solvers/deutils.pyo
${PYSITELIB}/sympy/solvers/diophantine.py
${PYSITELIB}/sympy/solvers/diophantine.pyc
${PYSITELIB}/sympy/solvers/diophantine.pyo
${PYSITELIB}/sympy/solvers/inequalities.py
${PYSITELIB}/sympy/solvers/inequalities.pyc
${PYSITELIB}/sympy/solvers/inequalities.pyo
${PYSITELIB}/sympy/solvers/ode.py
${PYSITELIB}/sympy/solvers/ode.pyc
${PYSITELIB}/sympy/solvers/ode.pyo
${PYSITELIB}/sympy/solvers/pde.py
${PYSITELIB}/sympy/solvers/pde.pyc
${PYSITELIB}/sympy/solvers/pde.pyo
${PYSITELIB}/sympy/solvers/polysys.py
${PYSITELIB}/sympy/solvers/polysys.pyc
${PYSITELIB}/sympy/solvers/polysys.pyo
${PYSITELIB}/sympy/solvers/recurr.py
${PYSITELIB}/sympy/solvers/recurr.pyc
${PYSITELIB}/sympy/solvers/recurr.pyo
${PYSITELIB}/sympy/solvers/solvers.py
${PYSITELIB}/sympy/solvers/solvers.pyc
${PYSITELIB}/sympy/solvers/solvers.pyo
${PYSITELIB}/sympy/solvers/tests/__init__.py
${PYSITELIB}/sympy/solvers/tests/__init__.pyc
${PYSITELIB}/sympy/solvers/tests/__init__.pyo
${PYSITELIB}/sympy/solvers/tests/test_constantsimp.py
${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyc
${PYSITELIB}/sympy/solvers/tests/test_constantsimp.pyo
${PYSITELIB}/sympy/solvers/tests/test_diophantine.py
${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyc
${PYSITELIB}/sympy/solvers/tests/test_diophantine.pyo
${PYSITELIB}/sympy/solvers/tests/test_inequalities.py
${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyc
${PYSITELIB}/sympy/solvers/tests/test_inequalities.pyo
${PYSITELIB}/sympy/solvers/tests/test_numeric.py
${PYSITELIB}/sympy/solvers/tests/test_numeric.pyc
${PYSITELIB}/sympy/solvers/tests/test_numeric.pyo
${PYSITELIB}/sympy/solvers/tests/test_ode.py
${PYSITELIB}/sympy/solvers/tests/test_ode.pyc
${PYSITELIB}/sympy/solvers/tests/test_ode.pyo
${PYSITELIB}/sympy/solvers/tests/test_pde.py
${PYSITELIB}/sympy/solvers/tests/test_pde.pyc
${PYSITELIB}/sympy/solvers/tests/test_pde.pyo
${PYSITELIB}/sympy/solvers/tests/test_polysys.py
${PYSITELIB}/sympy/solvers/tests/test_polysys.pyc
${PYSITELIB}/sympy/solvers/tests/test_polysys.pyo
${PYSITELIB}/sympy/solvers/tests/test_recurr.py
${PYSITELIB}/sympy/solvers/tests/test_recurr.pyc
${PYSITELIB}/sympy/solvers/tests/test_recurr.pyo
${PYSITELIB}/sympy/solvers/tests/test_solvers.py
${PYSITELIB}/sympy/solvers/tests/test_solvers.pyc
${PYSITELIB}/sympy/solvers/tests/test_solvers.pyo
${PYSITELIB}/sympy/statistics/__init__.py
${PYSITELIB}/sympy/statistics/__init__.pyc
${PYSITELIB}/sympy/statistics/__init__.pyo
${PYSITELIB}/sympy/statistics/distributions.py
${PYSITELIB}/sympy/statistics/distributions.pyc
${PYSITELIB}/sympy/statistics/distributions.pyo
${PYSITELIB}/sympy/statistics/tests/__init__.py
${PYSITELIB}/sympy/statistics/tests/__init__.pyc
${PYSITELIB}/sympy/statistics/tests/__init__.pyo
${PYSITELIB}/sympy/statistics/tests/test_statistics.py
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyc
${PYSITELIB}/sympy/statistics/tests/test_statistics.pyo
${PYSITELIB}/sympy/stats/__init__.py
${PYSITELIB}/sympy/stats/__init__.pyc
${PYSITELIB}/sympy/stats/__init__.pyo
${PYSITELIB}/sympy/stats/crv.py
${PYSITELIB}/sympy/stats/crv.pyc
${PYSITELIB}/sympy/stats/crv.pyo
${PYSITELIB}/sympy/stats/crv_types.py
${PYSITELIB}/sympy/stats/crv_types.pyc
${PYSITELIB}/sympy/stats/crv_types.pyo
${PYSITELIB}/sympy/stats/drv.py
${PYSITELIB}/sympy/stats/drv.pyc
${PYSITELIB}/sympy/stats/drv.pyo
${PYSITELIB}/sympy/stats/drv_types.py
${PYSITELIB}/sympy/stats/drv_types.pyc
${PYSITELIB}/sympy/stats/drv_types.pyo
${PYSITELIB}/sympy/stats/frv.py
${PYSITELIB}/sympy/stats/frv.pyc
${PYSITELIB}/sympy/stats/frv.pyo
${PYSITELIB}/sympy/stats/frv_types.py
${PYSITELIB}/sympy/stats/frv_types.pyc
${PYSITELIB}/sympy/stats/frv_types.pyo
${PYSITELIB}/sympy/stats/rv.py
${PYSITELIB}/sympy/stats/rv.pyc
${PYSITELIB}/sympy/stats/rv.pyo
${PYSITELIB}/sympy/stats/rv_interface.py
${PYSITELIB}/sympy/stats/rv_interface.pyc
${PYSITELIB}/sympy/stats/rv_interface.pyo
${PYSITELIB}/sympy/stats/tests/__init__.py
${PYSITELIB}/sympy/stats/tests/__init__.pyc
${PYSITELIB}/sympy/stats/tests/__init__.pyo
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.py
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyo
${PYSITELIB}/sympy/stats/tests/test_discrete_rv.py
${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyo
${PYSITELIB}/sympy/stats/tests/test_finite_rv.py
${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyo
${PYSITELIB}/sympy/stats/tests/test_mix.py
${PYSITELIB}/sympy/stats/tests/test_mix.pyc
${PYSITELIB}/sympy/stats/tests/test_mix.pyo
${PYSITELIB}/sympy/stats/tests/test_rv.py
${PYSITELIB}/sympy/stats/tests/test_rv.pyc
${PYSITELIB}/sympy/stats/tests/test_rv.pyo
${PYSITELIB}/sympy/strategies/__init__.py
${PYSITELIB}/sympy/strategies/__init__.pyc
${PYSITELIB}/sympy/strategies/__init__.pyo
${PYSITELIB}/sympy/strategies/branch/__init__.py
${PYSITELIB}/sympy/strategies/branch/__init__.pyc
${PYSITELIB}/sympy/strategies/branch/__init__.pyo
${PYSITELIB}/sympy/strategies/branch/core.py
${PYSITELIB}/sympy/strategies/branch/core.pyc
${PYSITELIB}/sympy/strategies/branch/core.pyo
${PYSITELIB}/sympy/strategies/branch/tests/__init__.py
${PYSITELIB}/sympy/strategies/branch/tests/__init__.pyc
${PYSITELIB}/sympy/strategies/branch/tests/__init__.pyo
${PYSITELIB}/sympy/strategies/branch/tests/test_core.py
${PYSITELIB}/sympy/strategies/branch/tests/test_core.pyc
${PYSITELIB}/sympy/strategies/branch/tests/test_core.pyo
${PYSITELIB}/sympy/strategies/branch/tests/test_tools.py
${PYSITELIB}/sympy/strategies/branch/tests/test_tools.pyc
${PYSITELIB}/sympy/strategies/branch/tests/test_tools.pyo
${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.py
${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.pyc
${PYSITELIB}/sympy/strategies/branch/tests/test_traverse.pyo
${PYSITELIB}/sympy/strategies/branch/tools.py
${PYSITELIB}/sympy/strategies/branch/tools.pyc
${PYSITELIB}/sympy/strategies/branch/tools.pyo
${PYSITELIB}/sympy/strategies/branch/traverse.py
${PYSITELIB}/sympy/strategies/branch/traverse.pyc
${PYSITELIB}/sympy/strategies/branch/traverse.pyo
${PYSITELIB}/sympy/strategies/core.py
${PYSITELIB}/sympy/strategies/core.pyc
${PYSITELIB}/sympy/strategies/core.pyo
${PYSITELIB}/sympy/strategies/rl.py
${PYSITELIB}/sympy/strategies/rl.pyc
${PYSITELIB}/sympy/strategies/rl.pyo
${PYSITELIB}/sympy/strategies/tests/__init__.py
${PYSITELIB}/sympy/strategies/tests/__init__.pyc
${PYSITELIB}/sympy/strategies/tests/__init__.pyo
${PYSITELIB}/sympy/strategies/tests/test_core.py
${PYSITELIB}/sympy/strategies/tests/test_core.pyc
${PYSITELIB}/sympy/strategies/tests/test_core.pyo
${PYSITELIB}/sympy/strategies/tests/test_rl.py
${PYSITELIB}/sympy/strategies/tests/test_rl.pyc
${PYSITELIB}/sympy/strategies/tests/test_rl.pyo
${PYSITELIB}/sympy/strategies/tests/test_strat.py
${PYSITELIB}/sympy/strategies/tests/test_strat.pyc
${PYSITELIB}/sympy/strategies/tests/test_strat.pyo
${PYSITELIB}/sympy/strategies/tests/test_tools.py
${PYSITELIB}/sympy/strategies/tests/test_tools.pyc
${PYSITELIB}/sympy/strategies/tests/test_tools.pyo
${PYSITELIB}/sympy/strategies/tests/test_traverse.py
${PYSITELIB}/sympy/strategies/tests/test_traverse.pyc
${PYSITELIB}/sympy/strategies/tests/test_traverse.pyo
${PYSITELIB}/sympy/strategies/tests/test_tree.py
${PYSITELIB}/sympy/strategies/tests/test_tree.pyc
${PYSITELIB}/sympy/strategies/tests/test_tree.pyo
${PYSITELIB}/sympy/strategies/tools.py
${PYSITELIB}/sympy/strategies/tools.pyc
${PYSITELIB}/sympy/strategies/tools.pyo
${PYSITELIB}/sympy/strategies/traverse.py
${PYSITELIB}/sympy/strategies/traverse.pyc
${PYSITELIB}/sympy/strategies/traverse.pyo
${PYSITELIB}/sympy/strategies/tree.py
${PYSITELIB}/sympy/strategies/tree.pyc
${PYSITELIB}/sympy/strategies/tree.pyo
${PYSITELIB}/sympy/strategies/util.py
${PYSITELIB}/sympy/strategies/util.pyc
${PYSITELIB}/sympy/strategies/util.pyo
${PYSITELIB}/sympy/tensor/__init__.py
${PYSITELIB}/sympy/tensor/__init__.pyc
${PYSITELIB}/sympy/tensor/__init__.pyo
${PYSITELIB}/sympy/tensor/index_methods.py
${PYSITELIB}/sympy/tensor/index_methods.pyc
${PYSITELIB}/sympy/tensor/index_methods.pyo
${PYSITELIB}/sympy/tensor/indexed.py
${PYSITELIB}/sympy/tensor/indexed.pyc
${PYSITELIB}/sympy/tensor/indexed.pyo
${PYSITELIB}/sympy/tensor/tensor.py
${PYSITELIB}/sympy/tensor/tensor.pyc
${PYSITELIB}/sympy/tensor/tensor.pyo
${PYSITELIB}/sympy/tensor/tests/__init__.py
${PYSITELIB}/sympy/tensor/tests/__init__.pyc
${PYSITELIB}/sympy/tensor/tests/__init__.pyo
${PYSITELIB}/sympy/tensor/tests/test_index_methods.py
${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyc
${PYSITELIB}/sympy/tensor/tests/test_index_methods.pyo
${PYSITELIB}/sympy/tensor/tests/test_indexed.py
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyc
${PYSITELIB}/sympy/tensor/tests/test_indexed.pyo
${PYSITELIB}/sympy/tensor/tests/test_tensor.py
${PYSITELIB}/sympy/tensor/tests/test_tensor.pyc
${PYSITELIB}/sympy/tensor/tests/test_tensor.pyo
${PYSITELIB}/sympy/unify/__init__.py
${PYSITELIB}/sympy/unify/__init__.pyc
${PYSITELIB}/sympy/unify/__init__.pyo
${PYSITELIB}/sympy/unify/core.py
${PYSITELIB}/sympy/unify/core.pyc
${PYSITELIB}/sympy/unify/core.pyo
${PYSITELIB}/sympy/unify/rewrite.py
${PYSITELIB}/sympy/unify/rewrite.pyc
${PYSITELIB}/sympy/unify/rewrite.pyo
${PYSITELIB}/sympy/unify/tests/__init__.py
${PYSITELIB}/sympy/unify/tests/__init__.pyc
${PYSITELIB}/sympy/unify/tests/__init__.pyo
${PYSITELIB}/sympy/unify/tests/test_rewrite.py
${PYSITELIB}/sympy/unify/tests/test_rewrite.pyc
${PYSITELIB}/sympy/unify/tests/test_rewrite.pyo
${PYSITELIB}/sympy/unify/tests/test_sympy.py
${PYSITELIB}/sympy/unify/tests/test_sympy.pyc
${PYSITELIB}/sympy/unify/tests/test_sympy.pyo
${PYSITELIB}/sympy/unify/tests/test_unify.py
${PYSITELIB}/sympy/unify/tests/test_unify.pyc
${PYSITELIB}/sympy/unify/tests/test_unify.pyo
${PYSITELIB}/sympy/unify/usympy.py
${PYSITELIB}/sympy/unify/usympy.pyc
${PYSITELIB}/sympy/unify/usympy.pyo
${PYSITELIB}/sympy/utilities/__init__.py
${PYSITELIB}/sympy/utilities/__init__.pyc
${PYSITELIB}/sympy/utilities/__init__.pyo
${PYSITELIB}/sympy/utilities/autowrap.py
${PYSITELIB}/sympy/utilities/autowrap.pyc
${PYSITELIB}/sympy/utilities/autowrap.pyo
${PYSITELIB}/sympy/utilities/benchmarking.py
${PYSITELIB}/sympy/utilities/benchmarking.pyc
${PYSITELIB}/sympy/utilities/benchmarking.pyo
${PYSITELIB}/sympy/utilities/codegen.py
${PYSITELIB}/sympy/utilities/codegen.pyc
${PYSITELIB}/sympy/utilities/codegen.pyo
${PYSITELIB}/sympy/utilities/compilef.py
${PYSITELIB}/sympy/utilities/compilef.pyc
${PYSITELIB}/sympy/utilities/compilef.pyo
${PYSITELIB}/sympy/utilities/decorator.py
${PYSITELIB}/sympy/utilities/decorator.pyc
${PYSITELIB}/sympy/utilities/decorator.pyo
${PYSITELIB}/sympy/utilities/exceptions.py
${PYSITELIB}/sympy/utilities/exceptions.pyc
${PYSITELIB}/sympy/utilities/exceptions.pyo
${PYSITELIB}/sympy/utilities/iterables.py
${PYSITELIB}/sympy/utilities/iterables.pyc
${PYSITELIB}/sympy/utilities/iterables.pyo
${PYSITELIB}/sympy/utilities/lambdify.py
${PYSITELIB}/sympy/utilities/lambdify.pyc
${PYSITELIB}/sympy/utilities/lambdify.pyo
${PYSITELIB}/sympy/utilities/magic.py
${PYSITELIB}/sympy/utilities/magic.pyc
${PYSITELIB}/sympy/utilities/magic.pyo
${PYSITELIB}/sympy/utilities/mathml/__init__.py
${PYSITELIB}/sympy/utilities/mathml/__init__.pyc
${PYSITELIB}/sympy/utilities/mathml/__init__.pyo
${PYSITELIB}/sympy/utilities/mathml/data/mmlctop.xsl
${PYSITELIB}/sympy/utilities/mathml/data/mmltex.xsl
${PYSITELIB}/sympy/utilities/mathml/data/simple_mmlctop.xsl
${PYSITELIB}/sympy/utilities/memoization.py
${PYSITELIB}/sympy/utilities/memoization.pyc
${PYSITELIB}/sympy/utilities/memoization.pyo
${PYSITELIB}/sympy/utilities/misc.py
${PYSITELIB}/sympy/utilities/misc.pyc
${PYSITELIB}/sympy/utilities/misc.pyo
${PYSITELIB}/sympy/utilities/pkgdata.py
${PYSITELIB}/sympy/utilities/pkgdata.pyc
${PYSITELIB}/sympy/utilities/pkgdata.pyo
${PYSITELIB}/sympy/utilities/pytest.py
${PYSITELIB}/sympy/utilities/pytest.pyc
${PYSITELIB}/sympy/utilities/pytest.pyo
${PYSITELIB}/sympy/utilities/randtest.py
${PYSITELIB}/sympy/utilities/randtest.pyc
${PYSITELIB}/sympy/utilities/randtest.pyo
${PYSITELIB}/sympy/utilities/runtests.py
${PYSITELIB}/sympy/utilities/runtests.pyc
${PYSITELIB}/sympy/utilities/runtests.pyo
${PYSITELIB}/sympy/utilities/source.py
${PYSITELIB}/sympy/utilities/source.pyc
${PYSITELIB}/sympy/utilities/source.pyo
${PYSITELIB}/sympy/utilities/tests/__init__.py
${PYSITELIB}/sympy/utilities/tests/__init__.pyc
${PYSITELIB}/sympy/utilities/tests/__init__.pyo
${PYSITELIB}/sympy/utilities/tests/diagnose_imports.py
${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyc
${PYSITELIB}/sympy/utilities/tests/diagnose_imports.pyo
${PYSITELIB}/sympy/utilities/tests/test_autowrap.py
${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyc
${PYSITELIB}/sympy/utilities/tests/test_autowrap.pyo
${PYSITELIB}/sympy/utilities/tests/test_code_quality.py
${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyc
${PYSITELIB}/sympy/utilities/tests/test_code_quality.pyo
${PYSITELIB}/sympy/utilities/tests/test_codegen.py
${PYSITELIB}/sympy/utilities/tests/test_codegen.pyc
${PYSITELIB}/sympy/utilities/tests/test_codegen.pyo
${PYSITELIB}/sympy/utilities/tests/test_decorator.py
${PYSITELIB}/sympy/utilities/tests/test_decorator.pyc
${PYSITELIB}/sympy/utilities/tests/test_decorator.pyo
${PYSITELIB}/sympy/utilities/tests/test_iterables.py
${PYSITELIB}/sympy/utilities/tests/test_iterables.pyc
${PYSITELIB}/sympy/utilities/tests/test_iterables.pyo
${PYSITELIB}/sympy/utilities/tests/test_lambdify.py
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyc
${PYSITELIB}/sympy/utilities/tests/test_lambdify.pyo
${PYSITELIB}/sympy/utilities/tests/test_module_imports.py
${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyc
${PYSITELIB}/sympy/utilities/tests/test_module_imports.pyo
${PYSITELIB}/sympy/utilities/tests/test_pickling.py
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyc
${PYSITELIB}/sympy/utilities/tests/test_pickling.pyo
${PYSITELIB}/sympy/utilities/tests/test_pytest.py
${PYSITELIB}/sympy/utilities/tests/test_pytest.pyc
${PYSITELIB}/sympy/utilities/tests/test_pytest.pyo
${PYSITELIB}/sympy/utilities/tests/test_source.py
${PYSITELIB}/sympy/utilities/tests/test_source.pyc
${PYSITELIB}/sympy/utilities/tests/test_source.pyo
${PYSITELIB}/sympy/utilities/tests/test_timeutils.py
${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyc
${PYSITELIB}/sympy/utilities/tests/test_timeutils.pyo
${PYSITELIB}/sympy/utilities/timeutils.py
${PYSITELIB}/sympy/utilities/timeutils.pyc
${PYSITELIB}/sympy/utilities/timeutils.pyo
man/man1/isympy${PYVERSSUFFIX}.1