checking version of sympy

157 views
Skip to first unread message

Erin Hodgess

unread,
Nov 11, 2013, 8:54:42 PM11/11/13
to sy...@googlegroups.com
Hello again

I used the "git" to install the development version of sympy.  Now the dumb question:  how do I make sure that I'm using the development version and not the old version, please?

Thanks,
Erin

Joachim Durchholz

unread,
Nov 11, 2013, 9:47:00 PM11/11/13
to sy...@googlegroups.com
Try the command "git branch".
It should give you a list of versions; the active one is marked with a star.
The latest version is on the "master" branch, so if that's starred,
you're working with the current development version.

Aaron Meurer

unread,
Nov 11, 2013, 9:58:17 PM11/11/13
to sy...@googlegroups.com
import sympy
sympy.__version__

Aaron Meurer
--
You received this message because you are subscribed to the Google Groups "sympy" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sympy+un...@googlegroups.com.
To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
For more options, visit https://groups.google.com/groups/opt_out.

Erin Hodgess

unread,
Nov 12, 2013, 12:09:53 AM11/12/13
to sy...@googlegroups.com
One last thing, please:

I have been tying the integration issue with the development issue:

If I put in the following, one command at a time, it works fine:
from sympy import *
from sympy.abc import t

shape = 4.0
scale = 2.0

z1 = (scale**shape)*gamma(shape)
x = symbols('x')
y = exp(-x/scale)*(x**(shape-1))/z1
u = integrate(y,(x,0,t))
print u

However, if I put those commands in a file and run these, this is what I get:
erin...@erinm.info [~/public_html/cgi-bin]# python tapas.py
Traceback (most recent call last):
  File "tapas.py", line 10, in <module>
    u = integrate(y,(x,0,t))
  File "/usr/local/lib/python2.7/site-packages/sympy/utilities/decorator.py", line 35, in threaded_func
    return func(expr, *args, **kwargs)
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/integrals.py", line 1283, in integrate
    risch=risch, manual=manual)
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/integrals.py", line 555, in doit
    conds=conds)
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/integrals.py", line 919, in _eval_integral
    h = heurisch_wrapper(g, x, hints=[])
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/heurisch.py", line 128, in heurisch_wrapper
    unnecessary_permutations)
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/heurisch.py", line 566, in heurisch
    solution = _integrate('Q')
  File "/usr/local/lib/python2.7/site-packages/sympy/integrals/heurisch.py", line 555, in _integrate
    numer = ring.from_expr(raw_numer)
  File "/usr/local/lib/python2.7/site-packages/sympy/polys/rings.py", line 367, in from_expr
    raise ValueError("expected an expression convertible to a polynomial in %s, got %s" % (self, expr))
ValueError: expected an expression convertible to a polynomial in Polynomial ring in _x0, _x1, _x2, _x3 over RR[_A0,_A1,_A2,_A3,_A4,_A5,_A6,_A7,_A8,_A9,_A10,_A11,_A12,_A13,_A14,_A15,_A16,_A17,_A18,_A19,_A20,_A21,_A22,_A23,_A24,_A25,_A26,_A27,_A28,_A29,_A30,_A31,_A32,_A33,_A34] with lex order, got -_A0*_x1**2 - _A12*_x2**2 - _A18 - _A2*_x0**2 - 2*_A20*_x0*_x3 - 2*_A22*_x2*_x3 - _A23*_x2 - _A24*_x0*_x2 - _A25*_x0 - 3*_A3*_x3**2 - _A34*_x1*_x2 - _A5*_x0*_x1 - 2*_A6*_x3 - 2*_A7*_x1*_x3 - _A8*_x1 + _x0*_x1 + 0.5*_x1*(2*_A0*_x1*_x3 + _A1*_x2 + 2*_A13*_x1 + 2*_A19*_x0*_x1 + _A21*_x2**2 + _A26 + 2*_A29*_x1*_x2 + 3*_A30*_x1**2 + _A32*_x0**2 + _A33*_x0 + _A34*_x2*_x3 + _A5*_x0*_x3 + _A7*_x3**2 + _A8*_x3 + _A9*_x0*_x2) - 3.0*_x2*(_A11 + 2*_A15*_x0*_x2 + _A16*_x2 + _A17*_x2**2 + _A19*_x1**2 + 2*_A2*_x0*_x3 + _A20*_x3**2 + _A24*_x2*_x3 + _A25*_x3 + 2*_A31*_x0 + 2*_A32*_x0*_x1 + _A33*_x1 + 3*_A4*_x0**2 + _A5*_x1*_x3 + _A9*_x1*_x2) - 2.0*_x3**1.0*(_A1*_x1 + 2*_A12*_x2*_x3 + 3*_A14*_x2**2 + _A15*_x0**2 + _A16*_x0 + 2*_A17*_x0*_x2 + 2*_A21*_x1*_x2 + _A22*_x3**2 + _A23*_x3 + _A24*_x0*_x3 + _A27 + 2*_A28*_x2 + _A29*_x1**2 + _A34*_x1*_x3 + _A9*_x0*_x1)
erin...@erinm.info [~/public_html/cgi-bin]#

Weird.

Is there a way to make sure that the correct version of sympy is set in the file, please?

Thanks again,
Erin

Aaron Meurer

unread,
Nov 12, 2013, 12:13:01 AM11/12/13
to sy...@googlegroups.com
If you installed SymPy (python setup.py install) from the git version, then it should be the right one. Again, you can check by printing sympy.__version__. 

Aaron Meurer

Erin Hodgess

unread,
Nov 12, 2013, 12:32:18 AM11/12/13
to sy...@googlegroups.com
It has 0.7.3



--
You received this message because you are subscribed to a topic in the Google Groups "sympy" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/sympy/CGXWlF867UQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to sympy+un...@googlegroups.com.

To post to this group, send email to sy...@googlegroups.com.
Visit this group at http://groups.google.com/group/sympy.
For more options, visit https://groups.google.com/groups/opt_out.



--
Erin Hodgess
Associate Professor
Department of Computer and Mathematical Sciences
University of Houston - Downtown
mailto: erinm....@gmail.com

Aaron Meurer

unread,
Nov 12, 2013, 12:41:52 AM11/12/13
to sy...@googlegroups.com
In that case, you aren't using the git version (it should be
0.7.3-git). Make sure you've 'python setup.py install'ed the git
version.

You can also run the Python script from the same directory as the git
checkout, and it will work, because Python always looks in the current
directory for packages first.

Aaron Meurer

Erin Hodgess

unread,
Nov 12, 2013, 1:54:56 AM11/12/13
to sy...@googlegroups.com
Still having trouble with the "git":

root@erinminfo [~]# git clone git://github.com/sympy/sympy.git
Cloning into 'sympy'...
remote: Finding bitmap roots...       
remote: Reusing existing pack: 128354, done.       
remote: Counting objects: 2044, done.       
remote: Compressing objects: 100% (1468/1468), done.       
remote: Total 130398 (delta 1397), reused 1084 (delta 576)       
Receiving objects: 100% (130398/130398), 54.07 MiB | 14.84 MiB/s, done.
Resolving deltas: 100% (102902/102902), done.
root@erinminfo [~]# cd sympy

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

byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/libhyper.py to libhyper.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/libmpi.py to libmpi.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/backend.py to backend.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/libmpf.py to libmpf.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/libmp/gammazeta.py to gammazeta.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/differentiation.py to differentiation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/approximation.py to approximation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/quadrature.py to quadrature.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/extrapolation.py to extrapolation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/polynomials.py to polynomials.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/calculus.py to calculus.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/odes.py to odes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/optimization.py to optimization.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/calculus/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/mpmath/visualization.py to visualization.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/plot_implicit.py to plot_implicit.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/tests/test_plot.py to test_plot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/tests/test_plot_implicit.py to test_plot_implicit.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/textplot.py to textplot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/managed_window.py to managed_window.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_surface.py to plot_surface.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_window.py to plot_window.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_mode.py to plot_mode.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/util.py to util.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_axes.py to plot_axes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/tests/test_plotting.py to test_plotting.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_camera.py to plot_camera.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_controller.py to plot_controller.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/color_scheme.py to color_scheme.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_interval.py to plot_interval.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_modes.py to plot_modes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_rotation.py to plot_rotation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot.py to plot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_object.py to plot_object.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_curve.py to plot_curve.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/pygletplot/plot_mode_base.py to plot_mode_base.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/intervalmath/interval_arithmetic.py to interval_arithmetic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/intervalmath/tests/test_intervalmath.py to test_intervalmath.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/intervalmath/tests/test_interval_functions.py to test_interval_functions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/intervalmath/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/intervalmath/lib_interval.py to lib_interval.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/plot.py to plot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/experimental_lambdify.py to experimental_lambdify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/plotting/proxy_pyglet.py to proxy_pyglet.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/conftest.py to conftest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/fglmtools.py to fglmtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyfuncs.py to polyfuncs.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/orderings.py to orderings.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyconfig.py to polyconfig.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/rationaltools.py to rationaltools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/rings.py to rings.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/compatibility.py to compatibility.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/characteristiczero.py to characteristiczero.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/gmpyrationalfield.py to gmpyrationalfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/compositedomain.py to compositedomain.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/gmpyintegerring.py to gmpyintegerring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/complexfield.py to complexfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/old_fractionfield.py to old_fractionfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/old_polynomialring.py to old_polynomialring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/rationalfield.py to rationalfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/field.py to field.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/fractionfield.py to fractionfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/quotientring.py to quotientring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/expressiondomain.py to expressiondomain.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/domain.py to domain.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/tests/test_quotientring.py to test_quotientring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/tests/test_polynomialring.py to test_polynomialring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/tests/test_domains.py to test_domains.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/pythonintegerring.py to pythonintegerring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/pythonrationalfield.py to pythonrationalfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/integerring.py to integerring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/pythonrational.py to pythonrational.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/realfield.py to realfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/modularinteger.py to modularinteger.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/groundtypes.py to groundtypes.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/algebraicfield.py to algebraicfield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/gmpyfinitefield.py to gmpyfinitefield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/finitefield.py to finitefield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/simpledomain.py to simpledomain.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/mpelements.py to mpelements.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/pythonfinitefield.py to pythonfinitefield.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/ring.py to ring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/domainelement.py to domainelement.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/domains/polynomialring.py to polynomialring.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/fields.py to fields.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/modulargcd.py to modulargcd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/groebnertools.py to groebnertools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polyroots.py to test_polyroots.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_euclidtools.py to test_euclidtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_densetools.py to test_densetools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_densearith.py to test_densearith.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_rings.py to test_rings.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_partfrac.py to test_partfrac.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_rootoftools.py to test_rootoftools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_groebnertools.py to test_groebnertools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_galoistools.py to test_galoistools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polyfuncs.py to test_polyfuncs.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_orderings.py to test_orderings.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polyutils.py to test_polyutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_fields.py to test_fields.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_injections.py to test_injections.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_monomials.py to test_monomials.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_specialpolys.py to test_specialpolys.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polyoptions.py to test_polyoptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_rationaltools.py to test_rationaltools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_numberfields.py to test_numberfields.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_rootisolation.py to test_rootisolation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_distributedmodules.py to test_distributedmodules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_constructor.py to test_constructor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_orthopolys.py to test_orthopolys.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polytools.py to test_polytools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_sqfreetools.py to test_sqfreetools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_solvers.py to test_solvers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_modulargcd.py to test_modulargcd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_polyclasses.py to test_polyclasses.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_heuristicgcd.py to test_heuristicgcd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_pythonrational.py to test_pythonrational.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_densebasic.py to test_densebasic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/tests/test_factortools.py to test_factortools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/solvers.py to solvers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyutils.py to polyutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/distributedmodules.py to distributedmodules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyoptions.py to polyoptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/sqfreetools.py to sqfreetools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/euclidtools.py to euclidtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/orthopolys.py to orthopolys.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyerrors.py to polyerrors.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyclasses.py to polyclasses.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/monomials.py to monomials.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/rootoftools.py to rootoftools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/specialpolys.py to specialpolys.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyroots.py to polyroots.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/constructor.py to constructor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/factortools.py to factortools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/heuristicgcd.py to heuristicgcd.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/densearith.py to densearith.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/ideals.py to ideals.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/homomorphisms.py to homomorphisms.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/modules.py to modules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/tests/test_homomorphisms.py to test_homomorphisms.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/tests/test_modules.py to test_modules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/tests/test_ideals.py to test_ideals.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/agca/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/partfrac.py to partfrac.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polyquinticconst.py to polyquinticconst.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/galoistools.py to galoistools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/densetools.py to densetools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polytools.py to polytools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/densebasic.py to densebasic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/numberfields.py to numberfields.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/rootisolation.py to rootisolation.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/polys/polycontext.py to polycontext.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/indexed.py to indexed.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/tests/test_index_methods.py to test_index_methods.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/tests/test_indexed.py to test_indexed.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/tests/test_tensor.py to test_tensor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/index_methods.py to index_methods.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/tensor.py to tensor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/tensor/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/cartan_matrix.py to cartan_matrix.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/root_system.py to root_system.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_f.py to type_f.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_e.py to type_e.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/cartan_type.py to cartan_type.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/dynkin_diagram.py to dynkin_diagram.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/weyl_group.py to weyl_group.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_g.py to type_g.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_b.py to type_b.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_c.py to type_c.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_d.py to type_d.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/liealgebras/type_a.py to type_a.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/diffgeom.py to diffgeom.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/tests/test_class_structure.py to test_class_structure.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/tests/test_function_diffgeom_book.py to test_function_diffgeom_book.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/tests/test_diffgeom.py to test_diffgeom.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/tests/test_hyperbolic_space.py to test_hyperbolic_space.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/diffgeom/rn.py to rn.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/fu.py to fu.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/simplify.py to simplify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/hyperexpand_doc.py to hyperexpand_doc.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/cse_opts.py to cse_opts.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/traversaltools.py to traversaltools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_cse.py to test_cse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_hyperexpand.py to test_hyperexpand.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_simplify.py to test_simplify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_epathtools.py to test_epathtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_function.py to test_function.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_rewrite.py to test_rewrite.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_traversaltools.py to test_traversaltools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_sqrtdenest.py to test_sqrtdenest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/tests/test_fu.py to test_fu.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/hyperexpand.py to hyperexpand.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/epathtools.py to epathtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/cse_main.py to cse_main.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/sqrtdenest.py to sqrtdenest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/simplify/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/lambdify.py to lambdify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/iterables.py to iterables.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/exceptions.py to exceptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/pytest.py to pytest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/randtest.py to randtest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/misc.py to misc.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/compilef.py to compilef.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/runtests.py to runtests.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_iterables.py to test_iterables.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_pickling.py to test_pickling.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_lambdify.py to test_lambdify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_codegen.py to test_codegen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_pytest.py to test_pytest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_source.py to test_source.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_decorator.py to test_decorator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_code_quality.py to test_code_quality.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_timeutils.py to test_timeutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/tests/test_autowrap.py to test_autowrap.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/autowrap.py to autowrap.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/magic.py to magic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/decorator.py to decorator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/benchmarking.py to benchmarking.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/timeutils.py to timeutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/codegen.py to codegen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/pkgdata.py to pkgdata.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/mathml/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/memoization.py to memoization.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/utilities/source.py to source.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/paulialgebra.py to paulialgebra.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/secondquant.py to secondquant.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/matrices.py to matrices.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/rigidbody.py to rigidbody.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/lagrange.py to lagrange.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/kane.py to kane.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_kane3.py to test_kane3.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_particle.py to test_particle.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_kane.py to test_kane.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_kane2.py to test_kane2.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_lagrange.py to test_lagrange.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_point.py to test_point.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_functions.py to test_functions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_rigidbody.py to test_rigidbody.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/test_essential.py to test_essential.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/particle.py to particle.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/functions.py to functions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/essential.py to essential.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/mechanics/point.py to point.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/units.py to units.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/sho.py to sho.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_secondquant.py to test_secondquant.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_clebsch_gordan.py to test_clebsch_gordan.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_hydrogen.py to test_hydrogen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_gaussopt.py to test_gaussopt.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_sho.py to test_sho.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_physics_matrices.py to test_physics_matrices.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_qho_1d.py to test_qho_1d.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_paulialgebra.py to test_paulialgebra.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/test_units.py to test_units.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/hydrogen.py to hydrogen.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/wigner.py to wigner.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/qho_1d.py to qho_1d.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/represent.py to represent.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/anticommutator.py to anticommutator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/qexpr.py to qexpr.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/qasm.py to qasm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/grover.py to grover.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/spin.py to spin.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/state.py to state.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/piab.py to piab.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/identitysearch.py to identitysearch.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/constants.py to constants.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/cg.py to cg.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/cartesian.py to cartesian.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/qubit.py to qubit.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_matrixutils.py to test_matrixutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_cartesian.py to test_cartesian.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_hilbert.py to test_hilbert.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_grover.py to test_grover.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_qapply.py to test_qapply.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_dagger.py to test_dagger.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_cg.py to test_cg.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_printing.py to test_printing.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_commutator.py to test_commutator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_represent.py to test_represent.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_qubit.py to test_qubit.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_sho1d.py to test_sho1d.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_constants.py to test_constants.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_qasm.py to test_qasm.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_density.py to test_density.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_qexpr.py to test_qexpr.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_qft.py to test_qft.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_anticommutator.py to test_anticommutator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_gate.py to test_gate.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_identitysearch.py to test_identitysearch.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_innerproduct.py to test_innerproduct.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_operatorset.py to test_operatorset.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_shor.py to test_shor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_circuitplot.py to test_circuitplot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_spin.py to test_spin.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_state.py to test_state.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_circuitutils.py to test_circuitutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_tensorproduct.py to test_tensorproduct.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_piab.py to test_piab.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tests/test_operator.py to test_operator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/qapply.py to qapply.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/qft.py to qft.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/sho1d.py to sho1d.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/dagger.py to dagger.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/circuitplot.py to circuitplot.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/operator.py to operator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/density.py to density.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/matrixcache.py to matrixcache.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/gate.py to gate.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/operatorset.py to operatorset.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/matrixutils.py to matrixutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/tensorproduct.py to tensorproduct.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/innerproduct.py to innerproduct.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/shor.py to shor.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/hilbert.py to hilbert.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/commutator.py to commutator.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/quantum/circuitutils.py to circuitutils.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/gaussopt.py to gaussopt.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/hep/gamma_matrices.py to gamma_matrices.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/physics/hep/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/multinomial.py to multinomial.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/bbp_pi.py to bbp_pi.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/tests/test_ntheory.py to test_ntheory.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/generate.py to generate.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/factor_.py to factor_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/partitions_.py to partitions_.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/modular.py to modular.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/residue_ntheory.py to residue_ntheory.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/ntheory/primetest.py to primetest.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/kauers.py to kauers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/gruntz.py to gruntz.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_demidovich.py to test_demidovich.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_limits.py to test_limits.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_order.py to test_order.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_series.py to test_series.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_lseries.py to test_lseries.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_residues.py to test_residues.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_nseries.py to test_nseries.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_gruntz.py to test_gruntz.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/test_kauers.py to test_kauers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/order.py to order.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/residues.py to residues.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/limits.py to limits.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/series.py to series.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/series/acceleration.py to acceleration.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/delta.py to delta.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/products.py to products.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/tests/test_delta.py to test_delta.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/tests/test_products.py to test_products.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/tests/test_gosper.py to test_gosper.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/tests/test_sums_products.py to test_sums_products.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/summations.py to summations.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/gosper.py to gosper.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/expr_with_limits.py to expr_with_limits.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/concrete/expr_with_intlimits.py to expr_with_intlimits.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/rl.py to rl.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/util.py to util.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_tools.py to test_tools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_strat.py to test_strat.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_core.py to test_core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_tree.py to test_tree.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_traverse.py to test_traverse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tests/test_rl.py to test_rl.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tools.py to tools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/tree.py to tree.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/core.py to core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/tests/test_tools.py to test_tools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/tests/test_core.py to test_core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/tests/test_traverse.py to test_traverse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/tools.py to tools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/core.py to core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/branch/traverse.py to traverse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/strategies/traverse.py to traverse.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/tests/test_sympy.py to test_sympy.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/tests/test_unify.py to test_unify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/tests/test_rewrite.py to test_rewrite.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/core.py to core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/rewrite.py to rewrite.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/usympy.py to usympy.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/unify/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/decorators.py to decorators.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/logic.py to logic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/sets.py to sets.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/symbol.py to symbol.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/compatibility.py to compatibility.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/assumptions.py to assumptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/basic.py to basic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/alphabets.py to alphabets.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_expand.py to test_expand.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_args.py to test_args.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_var.py to test_var.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_basic.py to test_basic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_evalf.py to test_evalf.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_assumptions.py to test_assumptions.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_sympify.py to test_sympify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_expr.py to test_expr.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_facts.py to test_facts.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_operations.py to test_operations.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_cache.py to test_cache.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_eval_power.py to test_eval_power.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_count_ops.py to test_count_ops.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_function.py to test_function.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_containers.py to test_containers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_arit.py to test_arit.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_match.py to test_match.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_priority.py to test_priority.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_logic.py to test_logic.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_complex.py to test_complex.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_relational.py to test_relational.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_equal.py to test_equal.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_diff.py to test_diff.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_numbers.py to test_numbers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_trace.py to test_trace.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_eval.py to test_eval.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_wester.py to test_wester.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_rules.py to test_rules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_exprtools.py to test_exprtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_symbol.py to test_symbol.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_truediv.py to test_truediv.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_noncommutative.py to test_noncommutative.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_subs.py to test_subs.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_sets.py to test_sets.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/tests/test_compatibility.py to test_compatibility.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/add.py to add.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/cache.py to cache.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/containers.py to containers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/evalf.py to evalf.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/mod.py to mod.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/trace.py to trace.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/rules.py to rules.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/singleton.py to singleton.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/exprtools.py to exprtools.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/core.py to core.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/mul.py to mul.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/operations.py to operations.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/power.py to power.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/function.py to function.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/relational.py to relational.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/expr.py to expr.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/numbers.py to numbers.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/coreerrors.py to coreerrors.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/facts.py to facts.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/__init__.py to __init__.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/sympify.py to sympify.pyc
byte-compiling /usr/local/lib/python2.7/site-packages/sympy/core/multidimensional.py to multidimensional.pyc
running install_scripts
copying build/scripts-2.7/isympy -> /usr/local/bin
changing mode of /usr/local/bin/isympy to 755
running install_data
copying doc/man/isympy.1 -> /usr/local/share/man/man1
running install_egg_info
Removing /usr/local/lib/python2.7/site-packages/sympy-0.7.3-py2.7.egg-info
Writing /usr/local/lib/python2.7/site-packages/sympy-0.7.3-py2.7.egg-info


root@erinminfo [~/sympy]# python
Python 2.7.5 (default, Sep 11 2013, 02:14:06)
[GCC 4.1.2 20080704 (Red Hat 4.1.2-54)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sympy
>>> sympy.__version__
'0.7.3'
>>>

So things are still alop.

Thanks for any help.  Sorry for all of the trouble.
Sincerely,
Erin

Aaron Meurer

unread,
Nov 12, 2013, 6:17:03 PM11/12/13
to sy...@googlegroups.com
Oh, it seems that we made a mistake somewhere. The git version is set
to 0.7.3 instead of 0.7.3-git like it should be. So you are probably
doing it right.

Aaron Meurer
> ...
>
> [Message clipped]

Ondřej Čertík

unread,
Nov 12, 2013, 7:03:19 PM11/12/13
to sympy
Hi Erin!

On Mon, Nov 11, 2013 at 11:54 PM, Erin Hodgess <erinm....@gmail.com> wrote:
> Still having trouble with the "git":
>
> root@erinminfo [~]# git clone git://github.com/sympy/sympy.git
> Cloning into 'sympy'...
> remote: Finding bitmap roots...
> remote: Reusing existing pack: 128354, done.
> remote: Counting objects: 2044, done.
> remote: Compressing objects: 100% (1468/1468), done.
> remote: Total 130398 (delta 1397), reused 1084 (delta 576)
> Receiving objects: 100% (130398/130398), 54.07 MiB | 14.84 MiB/s, done.
> Resolving deltas: 100% (102902/102902), done.
> root@erinminfo [~]# cd sympy
>
> root@erinminfo [~/sympy]# python setup.py install
> running install
> running build
...

Please use gist.github.com for such long logs.

Don't install things as root (which is what you seem to be doing). If
you want to try sympy, you can for example do:

git clone git://github.com/sympy/sympy.git
cd sympy
bin/isympy

That will use the sympy from your current directory. If you want to
install sympy, do something like:

python setup.py install --prefix=~/usr

and put ~/usr/lib/python2.7/site-packages into your PYTHONPATH.

Ondrej
Reply all
Reply to author
Forward
0 new messages