Fri Jan 24 16:20:24 2020 UTC ()
math/py-sympy: Update to 1.5

Breaking changes:

- Deprecate is_EmptySet in favor of is_empty.
- Lambda now requires a tuple rather than a list for the signature
  argument (non-tuple iterables are deprecated)
- Eq(expr) now raises ValueError. Eq(expr, 0) should be used
  instead.
- Refactory of the units module. Scale factors and dimensions are now
  both global and relative to single unit systems.
- get_dixon_matrix() now computes only the necessary monomials for the
  Dixon matrix.
- The ProductSet of no sets is no longer the empty set. Instead is the
  set consisting of the empty tuple.
- Deprecated tensorhead() and tensorsymmetry() static methods.
- Rational, irrational, transcendental and algebraic now imply finite
  in the assumptions system. This means that all symbols declared as
  rational, integer, odd etc are now automatically assumed finite.
- In the (old) assumptions, complex=True now implies finite=True. Note
  that the default assumption for Symbol is complex=None, which allows
  for the possibility for it to be infinite.
- The assumptions system is changed so that only finite numbers can be
  considered real, positive, negative, nonnegative, nonpositive or
  nonzero (since nonzero implies real). This means that any symbol
  declared with e.g. real=True is now automatically considered
  finite. It also means that infinities can not be considered positive
  or negative since they are not real (e.g. oo.is_positive is now
  False).
- New assumptions extended_real, extended_positive etc are added that
  allow for positive and negative infinity. The equivalent of
  Symbol('x', real=True) in version 1.4 is now Symbol('x',
  extended_real=True). The equivalent of Symbol('x', negative=False)
  is now Symbol('x', extended_negative=False) although it is usually
  better to use Symbol('x', nonnegative=True) (which implies both
  real=True and finite=True as well). Code that previously checked if
  x.is_positive should now be written as if x.is_extended_positive if
  it is intended that infinities should be allowed.
- Numbers still compare the same as they do in Python (Float(1) == 1)
  except when they appear in an Expression, e.g. x**2.0 != x**2


(minskim)
diff -r1.22 -r1.23 pkgsrc/math/py-sympy/Makefile
diff -r1.17 -r1.18 pkgsrc/math/py-sympy/PLIST
diff -r1.14 -r1.15 pkgsrc/math/py-sympy/distinfo

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

--- pkgsrc/math/py-sympy/Makefile 2020/01/15 19:13:06 1.22
+++ pkgsrc/math/py-sympy/Makefile 2020/01/24 16:20:24 1.23
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.22 2020/01/15 19:13:06 minskim Exp $ 1# $NetBSD: Makefile,v 1.23 2020/01/24 16:20:24 minskim Exp $
2 2
3DISTNAME= sympy-1.4 3DISTNAME= sympy-1.5
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
5CATEGORIES= math python 5CATEGORIES= math python
6MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= http://www.sympy.org/ 9HOMEPAGE= http://www.sympy.org/
10COMMENT= Python library for symbolic mathematics 10COMMENT= Python library for symbolic mathematics
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13DEPENDS+= ${PYPKGPREFIX}-mpmath>=0.19:../../math/py-mpmath 13DEPENDS+= ${PYPKGPREFIX}-mpmath>=0.19:../../math/py-mpmath
14 14
15USE_LANGUAGES= # none 15USE_LANGUAGES= # none
16 16

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

--- pkgsrc/math/py-sympy/PLIST 2020/01/15 19:13:06 1.17
+++ pkgsrc/math/py-sympy/PLIST 2020/01/24 16:20:24 1.18
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.17 2020/01/15 19:13:06 minskim Exp $ 1@comment $NetBSD: PLIST,v 1.18 2020/01/24 16:20:24 minskim Exp $
2bin/isympy${PYVERSSUFFIX} 2bin/isympy${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt 6${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe 7${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
8${PYSITELIB}/${EGG_INFODIR}/requires.txt 8${PYSITELIB}/${EGG_INFODIR}/requires.txt
9${PYSITELIB}/${EGG_INFODIR}/top_level.txt 9${PYSITELIB}/${EGG_INFODIR}/top_level.txt
10${PYSITELIB}/isympy.py 10${PYSITELIB}/isympy.py
11${PYSITELIB}/isympy.pyc 11${PYSITELIB}/isympy.pyc
12${PYSITELIB}/isympy.pyo 12${PYSITELIB}/isympy.pyo
13${PYSITELIB}/sympy/__init__.py 13${PYSITELIB}/sympy/__init__.py
14${PYSITELIB}/sympy/__init__.pyc 14${PYSITELIB}/sympy/__init__.pyc
@@ -30,26 +30,29 @@ ${PYSITELIB}/sympy/algebras/tests/test_q @@ -30,26 +30,29 @@ ${PYSITELIB}/sympy/algebras/tests/test_q
30${PYSITELIB}/sympy/algebras/tests/test_quaternion.pyo 30${PYSITELIB}/sympy/algebras/tests/test_quaternion.pyo
31${PYSITELIB}/sympy/assumptions/__init__.py 31${PYSITELIB}/sympy/assumptions/__init__.py
32${PYSITELIB}/sympy/assumptions/__init__.pyc 32${PYSITELIB}/sympy/assumptions/__init__.pyc
33${PYSITELIB}/sympy/assumptions/__init__.pyo 33${PYSITELIB}/sympy/assumptions/__init__.pyo
34${PYSITELIB}/sympy/assumptions/ask.py 34${PYSITELIB}/sympy/assumptions/ask.py
35${PYSITELIB}/sympy/assumptions/ask.pyc 35${PYSITELIB}/sympy/assumptions/ask.pyc
36${PYSITELIB}/sympy/assumptions/ask.pyo 36${PYSITELIB}/sympy/assumptions/ask.pyo
37${PYSITELIB}/sympy/assumptions/ask_generated.py 37${PYSITELIB}/sympy/assumptions/ask_generated.py
38${PYSITELIB}/sympy/assumptions/ask_generated.pyc 38${PYSITELIB}/sympy/assumptions/ask_generated.pyc
39${PYSITELIB}/sympy/assumptions/ask_generated.pyo 39${PYSITELIB}/sympy/assumptions/ask_generated.pyo
40${PYSITELIB}/sympy/assumptions/assume.py 40${PYSITELIB}/sympy/assumptions/assume.py
41${PYSITELIB}/sympy/assumptions/assume.pyc 41${PYSITELIB}/sympy/assumptions/assume.pyc
42${PYSITELIB}/sympy/assumptions/assume.pyo 42${PYSITELIB}/sympy/assumptions/assume.pyo
 43${PYSITELIB}/sympy/assumptions/cnf.py
 44${PYSITELIB}/sympy/assumptions/cnf.pyc
 45${PYSITELIB}/sympy/assumptions/cnf.pyo
43${PYSITELIB}/sympy/assumptions/handlers/__init__.py 46${PYSITELIB}/sympy/assumptions/handlers/__init__.py
44${PYSITELIB}/sympy/assumptions/handlers/__init__.pyc 47${PYSITELIB}/sympy/assumptions/handlers/__init__.pyc
45${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo 48${PYSITELIB}/sympy/assumptions/handlers/__init__.pyo
46${PYSITELIB}/sympy/assumptions/handlers/calculus.py 49${PYSITELIB}/sympy/assumptions/handlers/calculus.py
47${PYSITELIB}/sympy/assumptions/handlers/calculus.pyc 50${PYSITELIB}/sympy/assumptions/handlers/calculus.pyc
48${PYSITELIB}/sympy/assumptions/handlers/calculus.pyo 51${PYSITELIB}/sympy/assumptions/handlers/calculus.pyo
49${PYSITELIB}/sympy/assumptions/handlers/common.py 52${PYSITELIB}/sympy/assumptions/handlers/common.py
50${PYSITELIB}/sympy/assumptions/handlers/common.pyc 53${PYSITELIB}/sympy/assumptions/handlers/common.pyc
51${PYSITELIB}/sympy/assumptions/handlers/common.pyo 54${PYSITELIB}/sympy/assumptions/handlers/common.pyo
52${PYSITELIB}/sympy/assumptions/handlers/matrices.py 55${PYSITELIB}/sympy/assumptions/handlers/matrices.py
53${PYSITELIB}/sympy/assumptions/handlers/matrices.pyc 56${PYSITELIB}/sympy/assumptions/handlers/matrices.pyc
54${PYSITELIB}/sympy/assumptions/handlers/matrices.pyo 57${PYSITELIB}/sympy/assumptions/handlers/matrices.pyo
55${PYSITELIB}/sympy/assumptions/handlers/ntheory.py 58${PYSITELIB}/sympy/assumptions/handlers/ntheory.py
@@ -177,26 +180,29 @@ ${PYSITELIB}/sympy/codegen/cnodes.pyc @@ -177,26 +180,29 @@ ${PYSITELIB}/sympy/codegen/cnodes.pyc
177${PYSITELIB}/sympy/codegen/cnodes.pyo 180${PYSITELIB}/sympy/codegen/cnodes.pyo
178${PYSITELIB}/sympy/codegen/cutils.py 181${PYSITELIB}/sympy/codegen/cutils.py
179${PYSITELIB}/sympy/codegen/cutils.pyc 182${PYSITELIB}/sympy/codegen/cutils.pyc
180${PYSITELIB}/sympy/codegen/cutils.pyo 183${PYSITELIB}/sympy/codegen/cutils.pyo
181${PYSITELIB}/sympy/codegen/cxxnodes.py 184${PYSITELIB}/sympy/codegen/cxxnodes.py
182${PYSITELIB}/sympy/codegen/cxxnodes.pyc 185${PYSITELIB}/sympy/codegen/cxxnodes.pyc
183${PYSITELIB}/sympy/codegen/cxxnodes.pyo 186${PYSITELIB}/sympy/codegen/cxxnodes.pyo
184${PYSITELIB}/sympy/codegen/fnodes.py 187${PYSITELIB}/sympy/codegen/fnodes.py
185${PYSITELIB}/sympy/codegen/fnodes.pyc 188${PYSITELIB}/sympy/codegen/fnodes.pyc
186${PYSITELIB}/sympy/codegen/fnodes.pyo 189${PYSITELIB}/sympy/codegen/fnodes.pyo
187${PYSITELIB}/sympy/codegen/futils.py 190${PYSITELIB}/sympy/codegen/futils.py
188${PYSITELIB}/sympy/codegen/futils.pyc 191${PYSITELIB}/sympy/codegen/futils.pyc
189${PYSITELIB}/sympy/codegen/futils.pyo 192${PYSITELIB}/sympy/codegen/futils.pyo
 193${PYSITELIB}/sympy/codegen/matrix_nodes.py
 194${PYSITELIB}/sympy/codegen/matrix_nodes.pyc
 195${PYSITELIB}/sympy/codegen/matrix_nodes.pyo
190${PYSITELIB}/sympy/codegen/pyutils.py 196${PYSITELIB}/sympy/codegen/pyutils.py
191${PYSITELIB}/sympy/codegen/pyutils.pyc 197${PYSITELIB}/sympy/codegen/pyutils.pyc
192${PYSITELIB}/sympy/codegen/pyutils.pyo 198${PYSITELIB}/sympy/codegen/pyutils.pyo
193${PYSITELIB}/sympy/codegen/rewriting.py 199${PYSITELIB}/sympy/codegen/rewriting.py
194${PYSITELIB}/sympy/codegen/rewriting.pyc 200${PYSITELIB}/sympy/codegen/rewriting.pyc
195${PYSITELIB}/sympy/codegen/rewriting.pyo 201${PYSITELIB}/sympy/codegen/rewriting.pyo
196${PYSITELIB}/sympy/codegen/tests/__init__.py 202${PYSITELIB}/sympy/codegen/tests/__init__.py
197${PYSITELIB}/sympy/codegen/tests/__init__.pyc 203${PYSITELIB}/sympy/codegen/tests/__init__.pyc
198${PYSITELIB}/sympy/codegen/tests/__init__.pyo 204${PYSITELIB}/sympy/codegen/tests/__init__.pyo
199${PYSITELIB}/sympy/codegen/tests/test_algorithms.py 205${PYSITELIB}/sympy/codegen/tests/test_algorithms.py
200${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyc 206${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyc
201${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyo 207${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyo
202${PYSITELIB}/sympy/codegen/tests/test_applications.py 208${PYSITELIB}/sympy/codegen/tests/test_applications.py
@@ -213,26 +219,29 @@ ${PYSITELIB}/sympy/codegen/tests/test_as @@ -213,26 +219,29 @@ ${PYSITELIB}/sympy/codegen/tests/test_as
213${PYSITELIB}/sympy/codegen/tests/test_ast.pyo 219${PYSITELIB}/sympy/codegen/tests/test_ast.pyo
214${PYSITELIB}/sympy/codegen/tests/test_cfunctions.py 220${PYSITELIB}/sympy/codegen/tests/test_cfunctions.py
215${PYSITELIB}/sympy/codegen/tests/test_cfunctions.pyc 221${PYSITELIB}/sympy/codegen/tests/test_cfunctions.pyc
216${PYSITELIB}/sympy/codegen/tests/test_cfunctions.pyo 222${PYSITELIB}/sympy/codegen/tests/test_cfunctions.pyo
217${PYSITELIB}/sympy/codegen/tests/test_cnodes.py 223${PYSITELIB}/sympy/codegen/tests/test_cnodes.py
218${PYSITELIB}/sympy/codegen/tests/test_cnodes.pyc 224${PYSITELIB}/sympy/codegen/tests/test_cnodes.pyc
219${PYSITELIB}/sympy/codegen/tests/test_cnodes.pyo 225${PYSITELIB}/sympy/codegen/tests/test_cnodes.pyo
220${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.py 226${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.py
221${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.pyc 227${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.pyc
222${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.pyo 228${PYSITELIB}/sympy/codegen/tests/test_cxxnodes.pyo
223${PYSITELIB}/sympy/codegen/tests/test_fnodes.py 229${PYSITELIB}/sympy/codegen/tests/test_fnodes.py
224${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyc 230${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyc
225${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyo 231${PYSITELIB}/sympy/codegen/tests/test_fnodes.pyo
 232${PYSITELIB}/sympy/codegen/tests/test_pyutils.py
 233${PYSITELIB}/sympy/codegen/tests/test_pyutils.pyc
 234${PYSITELIB}/sympy/codegen/tests/test_pyutils.pyo
226${PYSITELIB}/sympy/codegen/tests/test_rewriting.py 235${PYSITELIB}/sympy/codegen/tests/test_rewriting.py
227${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyc 236${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyc
228${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyo 237${PYSITELIB}/sympy/codegen/tests/test_rewriting.pyo
229${PYSITELIB}/sympy/combinatorics/__init__.py 238${PYSITELIB}/sympy/combinatorics/__init__.py
230${PYSITELIB}/sympy/combinatorics/__init__.pyc 239${PYSITELIB}/sympy/combinatorics/__init__.pyc
231${PYSITELIB}/sympy/combinatorics/__init__.pyo 240${PYSITELIB}/sympy/combinatorics/__init__.pyo
232${PYSITELIB}/sympy/combinatorics/coset_table.py 241${PYSITELIB}/sympy/combinatorics/coset_table.py
233${PYSITELIB}/sympy/combinatorics/coset_table.pyc 242${PYSITELIB}/sympy/combinatorics/coset_table.pyc
234${PYSITELIB}/sympy/combinatorics/coset_table.pyo 243${PYSITELIB}/sympy/combinatorics/coset_table.pyo
235${PYSITELIB}/sympy/combinatorics/fp_groups.py 244${PYSITELIB}/sympy/combinatorics/fp_groups.py
236${PYSITELIB}/sympy/combinatorics/fp_groups.pyc 245${PYSITELIB}/sympy/combinatorics/fp_groups.pyc
237${PYSITELIB}/sympy/combinatorics/fp_groups.pyo 246${PYSITELIB}/sympy/combinatorics/fp_groups.pyo
238${PYSITELIB}/sympy/combinatorics/free_groups.py 247${PYSITELIB}/sympy/combinatorics/free_groups.py
@@ -246,26 +255,29 @@ ${PYSITELIB}/sympy/combinatorics/graycod @@ -246,26 +255,29 @@ ${PYSITELIB}/sympy/combinatorics/graycod
246${PYSITELIB}/sympy/combinatorics/graycode.pyo 255${PYSITELIB}/sympy/combinatorics/graycode.pyo
247${PYSITELIB}/sympy/combinatorics/group_constructs.py 256${PYSITELIB}/sympy/combinatorics/group_constructs.py
248${PYSITELIB}/sympy/combinatorics/group_constructs.pyc 257${PYSITELIB}/sympy/combinatorics/group_constructs.pyc
249${PYSITELIB}/sympy/combinatorics/group_constructs.pyo 258${PYSITELIB}/sympy/combinatorics/group_constructs.pyo
250${PYSITELIB}/sympy/combinatorics/homomorphisms.py 259${PYSITELIB}/sympy/combinatorics/homomorphisms.py
251${PYSITELIB}/sympy/combinatorics/homomorphisms.pyc 260${PYSITELIB}/sympy/combinatorics/homomorphisms.pyc
252${PYSITELIB}/sympy/combinatorics/homomorphisms.pyo 261${PYSITELIB}/sympy/combinatorics/homomorphisms.pyo
253${PYSITELIB}/sympy/combinatorics/named_groups.py 262${PYSITELIB}/sympy/combinatorics/named_groups.py
254${PYSITELIB}/sympy/combinatorics/named_groups.pyc 263${PYSITELIB}/sympy/combinatorics/named_groups.pyc
255${PYSITELIB}/sympy/combinatorics/named_groups.pyo 264${PYSITELIB}/sympy/combinatorics/named_groups.pyo
256${PYSITELIB}/sympy/combinatorics/partitions.py 265${PYSITELIB}/sympy/combinatorics/partitions.py
257${PYSITELIB}/sympy/combinatorics/partitions.pyc 266${PYSITELIB}/sympy/combinatorics/partitions.pyc
258${PYSITELIB}/sympy/combinatorics/partitions.pyo 267${PYSITELIB}/sympy/combinatorics/partitions.pyo
 268${PYSITELIB}/sympy/combinatorics/pc_groups.py
 269${PYSITELIB}/sympy/combinatorics/pc_groups.pyc
 270${PYSITELIB}/sympy/combinatorics/pc_groups.pyo
259${PYSITELIB}/sympy/combinatorics/perm_groups.py 271${PYSITELIB}/sympy/combinatorics/perm_groups.py
260${PYSITELIB}/sympy/combinatorics/perm_groups.pyc 272${PYSITELIB}/sympy/combinatorics/perm_groups.pyc
261${PYSITELIB}/sympy/combinatorics/perm_groups.pyo 273${PYSITELIB}/sympy/combinatorics/perm_groups.pyo
262${PYSITELIB}/sympy/combinatorics/permutations.py 274${PYSITELIB}/sympy/combinatorics/permutations.py
263${PYSITELIB}/sympy/combinatorics/permutations.pyc 275${PYSITELIB}/sympy/combinatorics/permutations.pyc
264${PYSITELIB}/sympy/combinatorics/permutations.pyo 276${PYSITELIB}/sympy/combinatorics/permutations.pyo
265${PYSITELIB}/sympy/combinatorics/polyhedron.py 277${PYSITELIB}/sympy/combinatorics/polyhedron.py
266${PYSITELIB}/sympy/combinatorics/polyhedron.pyc 278${PYSITELIB}/sympy/combinatorics/polyhedron.pyc
267${PYSITELIB}/sympy/combinatorics/polyhedron.pyo 279${PYSITELIB}/sympy/combinatorics/polyhedron.pyo
268${PYSITELIB}/sympy/combinatorics/prufer.py 280${PYSITELIB}/sympy/combinatorics/prufer.py
269${PYSITELIB}/sympy/combinatorics/prufer.pyc 281${PYSITELIB}/sympy/combinatorics/prufer.pyc
270${PYSITELIB}/sympy/combinatorics/prufer.pyo 282${PYSITELIB}/sympy/combinatorics/prufer.pyo
271${PYSITELIB}/sympy/combinatorics/rewritingsystem.py 283${PYSITELIB}/sympy/combinatorics/rewritingsystem.py
@@ -300,26 +312,29 @@ ${PYSITELIB}/sympy/combinatorics/tests/t @@ -300,26 +312,29 @@ ${PYSITELIB}/sympy/combinatorics/tests/t
300${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyo 312${PYSITELIB}/sympy/combinatorics/tests/test_graycode.pyo
301${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.py 313${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.py
302${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyc 314${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyc
303${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyo 315${PYSITELIB}/sympy/combinatorics/tests/test_group_constructs.pyo
304${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.py 316${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.py
305${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.pyc 317${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.pyc
306${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.pyo 318${PYSITELIB}/sympy/combinatorics/tests/test_homomorphisms.pyo
307${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.py 319${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.py
308${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyc 320${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyc
309${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyo 321${PYSITELIB}/sympy/combinatorics/tests/test_named_groups.pyo
310${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py 322${PYSITELIB}/sympy/combinatorics/tests/test_partitions.py
311${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc 323${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyc
312${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo 324${PYSITELIB}/sympy/combinatorics/tests/test_partitions.pyo
 325${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.py
 326${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.pyc
 327${PYSITELIB}/sympy/combinatorics/tests/test_pc_groups.pyo
313${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py 328${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.py
314${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc 329${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyc
315${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo 330${PYSITELIB}/sympy/combinatorics/tests/test_perm_groups.pyo
316${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py 331${PYSITELIB}/sympy/combinatorics/tests/test_permutations.py
317${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc 332${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyc
318${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo 333${PYSITELIB}/sympy/combinatorics/tests/test_permutations.pyo
319${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py 334${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.py
320${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc 335${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyc
321${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo 336${PYSITELIB}/sympy/combinatorics/tests/test_polyhedron.pyo
322${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py 337${PYSITELIB}/sympy/combinatorics/tests/test_prufer.py
323${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc 338${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyc
324${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo 339${PYSITELIB}/sympy/combinatorics/tests/test_prufer.pyo
325${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.py 340${PYSITELIB}/sympy/combinatorics/tests/test_rewriting.py
@@ -558,26 +573,29 @@ ${PYSITELIB}/sympy/core/tests/test_exprt @@ -558,26 +573,29 @@ ${PYSITELIB}/sympy/core/tests/test_exprt
558${PYSITELIB}/sympy/core/tests/test_exprtools.pyo 573${PYSITELIB}/sympy/core/tests/test_exprtools.pyo
559${PYSITELIB}/sympy/core/tests/test_facts.py 574${PYSITELIB}/sympy/core/tests/test_facts.py
560${PYSITELIB}/sympy/core/tests/test_facts.pyc 575${PYSITELIB}/sympy/core/tests/test_facts.pyc
561${PYSITELIB}/sympy/core/tests/test_facts.pyo 576${PYSITELIB}/sympy/core/tests/test_facts.pyo
562${PYSITELIB}/sympy/core/tests/test_function.py 577${PYSITELIB}/sympy/core/tests/test_function.py
563${PYSITELIB}/sympy/core/tests/test_function.pyc 578${PYSITELIB}/sympy/core/tests/test_function.pyc
564${PYSITELIB}/sympy/core/tests/test_function.pyo 579${PYSITELIB}/sympy/core/tests/test_function.pyo
565${PYSITELIB}/sympy/core/tests/test_logic.py 580${PYSITELIB}/sympy/core/tests/test_logic.py
566${PYSITELIB}/sympy/core/tests/test_logic.pyc 581${PYSITELIB}/sympy/core/tests/test_logic.pyc
567${PYSITELIB}/sympy/core/tests/test_logic.pyo 582${PYSITELIB}/sympy/core/tests/test_logic.pyo
568${PYSITELIB}/sympy/core/tests/test_match.py 583${PYSITELIB}/sympy/core/tests/test_match.py
569${PYSITELIB}/sympy/core/tests/test_match.pyc 584${PYSITELIB}/sympy/core/tests/test_match.pyc
570${PYSITELIB}/sympy/core/tests/test_match.pyo 585${PYSITELIB}/sympy/core/tests/test_match.pyo
 586${PYSITELIB}/sympy/core/tests/test_multidimensional.py
 587${PYSITELIB}/sympy/core/tests/test_multidimensional.pyc
 588${PYSITELIB}/sympy/core/tests/test_multidimensional.pyo
571${PYSITELIB}/sympy/core/tests/test_noncommutative.py 589${PYSITELIB}/sympy/core/tests/test_noncommutative.py
572${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc 590${PYSITELIB}/sympy/core/tests/test_noncommutative.pyc
573${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo 591${PYSITELIB}/sympy/core/tests/test_noncommutative.pyo
574${PYSITELIB}/sympy/core/tests/test_numbers.py 592${PYSITELIB}/sympy/core/tests/test_numbers.py
575${PYSITELIB}/sympy/core/tests/test_numbers.pyc 593${PYSITELIB}/sympy/core/tests/test_numbers.pyc
576${PYSITELIB}/sympy/core/tests/test_numbers.pyo 594${PYSITELIB}/sympy/core/tests/test_numbers.pyo
577${PYSITELIB}/sympy/core/tests/test_operations.py 595${PYSITELIB}/sympy/core/tests/test_operations.py
578${PYSITELIB}/sympy/core/tests/test_operations.pyc 596${PYSITELIB}/sympy/core/tests/test_operations.pyc
579${PYSITELIB}/sympy/core/tests/test_operations.pyo 597${PYSITELIB}/sympy/core/tests/test_operations.pyo
580${PYSITELIB}/sympy/core/tests/test_power.py 598${PYSITELIB}/sympy/core/tests/test_power.py
581${PYSITELIB}/sympy/core/tests/test_power.pyc 599${PYSITELIB}/sympy/core/tests/test_power.pyc
582${PYSITELIB}/sympy/core/tests/test_power.pyo 600${PYSITELIB}/sympy/core/tests/test_power.pyo
583${PYSITELIB}/sympy/core/tests/test_priority.py 601${PYSITELIB}/sympy/core/tests/test_priority.py
@@ -1045,29 +1063,26 @@ ${PYSITELIB}/sympy/integrals/rubi/parset @@ -1045,29 +1063,26 @@ ${PYSITELIB}/sympy/integrals/rubi/parset
1045${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.py 1063${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.py
1046${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyc 1064${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyc
1047${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyo 1065${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyo
1048${PYSITELIB}/sympy/integrals/rubi/parsetools/header.py.txt 1066${PYSITELIB}/sympy/integrals/rubi/parsetools/header.py.txt
1049${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.py 1067${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.py
1050${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.pyc 1068${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.pyc
1051${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.pyo 1069${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.pyo
1052${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.py 1070${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.py
1053${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.pyc 1071${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.pyc
1054${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.pyo 1072${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/__init__.pyo
1055${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.py 1073${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.py
1056${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyc 1074${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyc
1057${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyo 1075${PYSITELIB}/sympy/integrals/rubi/parsetools/tests/test_parse.pyo
1058${PYSITELIB}/sympy/integrals/rubi/rubi.py 
1059${PYSITELIB}/sympy/integrals/rubi/rubi.pyc 
1060${PYSITELIB}/sympy/integrals/rubi/rubi.pyo 
1061${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.py 1076${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.py
1062${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyc 1077${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyc
1063${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyo 1078${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyo
1064${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.py 1079${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.py
1065${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyc 1080${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyc
1066${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyo 1081${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyo
1067${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.py 1082${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.py
1068${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyc 1083${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyc
1069${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyo 1084${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyo
1070${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.py 1085${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.py
1071${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyc 1086${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyc
1072${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyo 1087${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyo
1073${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_4.py 1088${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_4.py
@@ -1096,26 +1111,29 @@ ${PYSITELIB}/sympy/integrals/rubi/rubi_t @@ -1096,26 +1111,29 @@ ${PYSITELIB}/sympy/integrals/rubi/rubi_t
1096${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_secant.pyo 1111${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_secant.pyo
1097${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.py 1112${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.py
1098${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyc 1113${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyc
1099${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyo 1114${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyo
1100${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.py 1115${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.py
1101${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyc 1116${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyc
1102${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyo 1117${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyo
1103${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.py 1118${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.py
1104${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyc 1119${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyc
1105${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyo 1120${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyo
1106${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.py 1121${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.py
1107${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyc 1122${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyc
1108${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyo 1123${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyo
 1124${PYSITELIB}/sympy/integrals/rubi/rubimain.py
 1125${PYSITELIB}/sympy/integrals/rubi/rubimain.pyc
 1126${PYSITELIB}/sympy/integrals/rubi/rubimain.pyo
1109${PYSITELIB}/sympy/integrals/rubi/rules/__init__.py 1127${PYSITELIB}/sympy/integrals/rubi/rules/__init__.py
1110${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyc 1128${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyc
1111${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyo 1129${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyo
1112${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.py 1130${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.py
1113${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.pyc 1131${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.pyc
1114${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.pyo 1132${PYSITELIB}/sympy/integrals/rubi/rules/binomial_products.pyo
1115${PYSITELIB}/sympy/integrals/rubi/rules/exponential.py 1133${PYSITELIB}/sympy/integrals/rubi/rules/exponential.py
1116${PYSITELIB}/sympy/integrals/rubi/rules/exponential.pyc 1134${PYSITELIB}/sympy/integrals/rubi/rules/exponential.pyc
1117${PYSITELIB}/sympy/integrals/rubi/rules/exponential.pyo 1135${PYSITELIB}/sympy/integrals/rubi/rules/exponential.pyo
1118${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.py 1136${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.py
1119${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.pyc 1137${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.pyc
1120${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.pyo 1138${PYSITELIB}/sympy/integrals/rubi/rules/hyperbolic.pyo
1121${PYSITELIB}/sympy/integrals/rubi/rules/integrand_simplification.py 1139${PYSITELIB}/sympy/integrals/rubi/rules/integrand_simplification.py
@@ -1342,26 +1360,29 @@ ${PYSITELIB}/sympy/liealgebras/weyl_grou @@ -1342,26 +1360,29 @@ ${PYSITELIB}/sympy/liealgebras/weyl_grou
1342${PYSITELIB}/sympy/liealgebras/weyl_group.pyo 1360${PYSITELIB}/sympy/liealgebras/weyl_group.pyo
1343${PYSITELIB}/sympy/logic/__init__.py 1361${PYSITELIB}/sympy/logic/__init__.py
1344${PYSITELIB}/sympy/logic/__init__.pyc 1362${PYSITELIB}/sympy/logic/__init__.pyc
1345${PYSITELIB}/sympy/logic/__init__.pyo 1363${PYSITELIB}/sympy/logic/__init__.pyo
1346${PYSITELIB}/sympy/logic/algorithms/__init__.py 1364${PYSITELIB}/sympy/logic/algorithms/__init__.py
1347${PYSITELIB}/sympy/logic/algorithms/__init__.pyc 1365${PYSITELIB}/sympy/logic/algorithms/__init__.pyc
1348${PYSITELIB}/sympy/logic/algorithms/__init__.pyo 1366${PYSITELIB}/sympy/logic/algorithms/__init__.pyo
1349${PYSITELIB}/sympy/logic/algorithms/dpll.py 1367${PYSITELIB}/sympy/logic/algorithms/dpll.py
1350${PYSITELIB}/sympy/logic/algorithms/dpll.pyc 1368${PYSITELIB}/sympy/logic/algorithms/dpll.pyc
1351${PYSITELIB}/sympy/logic/algorithms/dpll.pyo 1369${PYSITELIB}/sympy/logic/algorithms/dpll.pyo
1352${PYSITELIB}/sympy/logic/algorithms/dpll2.py 1370${PYSITELIB}/sympy/logic/algorithms/dpll2.py
1353${PYSITELIB}/sympy/logic/algorithms/dpll2.pyc 1371${PYSITELIB}/sympy/logic/algorithms/dpll2.pyc
1354${PYSITELIB}/sympy/logic/algorithms/dpll2.pyo 1372${PYSITELIB}/sympy/logic/algorithms/dpll2.pyo
 1373${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.py
 1374${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.pyc
 1375${PYSITELIB}/sympy/logic/algorithms/pycosat_wrapper.pyo
1355${PYSITELIB}/sympy/logic/boolalg.py 1376${PYSITELIB}/sympy/logic/boolalg.py
1356${PYSITELIB}/sympy/logic/boolalg.pyc 1377${PYSITELIB}/sympy/logic/boolalg.pyc
1357${PYSITELIB}/sympy/logic/boolalg.pyo 1378${PYSITELIB}/sympy/logic/boolalg.pyo
1358${PYSITELIB}/sympy/logic/inference.py 1379${PYSITELIB}/sympy/logic/inference.py
1359${PYSITELIB}/sympy/logic/inference.pyc 1380${PYSITELIB}/sympy/logic/inference.pyc
1360${PYSITELIB}/sympy/logic/inference.pyo 1381${PYSITELIB}/sympy/logic/inference.pyo
1361${PYSITELIB}/sympy/logic/tests/__init__.py 1382${PYSITELIB}/sympy/logic/tests/__init__.py
1362${PYSITELIB}/sympy/logic/tests/__init__.pyc 1383${PYSITELIB}/sympy/logic/tests/__init__.pyc
1363${PYSITELIB}/sympy/logic/tests/__init__.pyo 1384${PYSITELIB}/sympy/logic/tests/__init__.pyo
1364${PYSITELIB}/sympy/logic/tests/test_boolalg.py 1385${PYSITELIB}/sympy/logic/tests/test_boolalg.py
1365${PYSITELIB}/sympy/logic/tests/test_boolalg.pyc 1386${PYSITELIB}/sympy/logic/tests/test_boolalg.pyc
1366${PYSITELIB}/sympy/logic/tests/test_boolalg.pyo 1387${PYSITELIB}/sympy/logic/tests/test_boolalg.pyo
1367${PYSITELIB}/sympy/logic/tests/test_dimacs.py 1388${PYSITELIB}/sympy/logic/tests/test_dimacs.py
@@ -1755,26 +1776,38 @@ ${PYSITELIB}/sympy/parsing/autolev/test- @@ -1755,26 +1776,38 @@ ${PYSITELIB}/sympy/parsing/autolev/test-
1755${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.pyo 1776${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.pyo
1756${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.al 1777${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.al
1757${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.py 1778${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.py
1758${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyc 1779${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyc
1759${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyo 1780${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyo
1760${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.al 1781${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.al
1761${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.py 1782${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.py
1762${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyc 1783${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyc
1763${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyo 1784${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyo
1764${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.al 1785${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.al
1765${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.py 1786${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.py
1766${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyc 1787${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyc
1767${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyo 1788${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyo
 1789${PYSITELIB}/sympy/parsing/c/__init__.py
 1790${PYSITELIB}/sympy/parsing/c/__init__.pyc
 1791${PYSITELIB}/sympy/parsing/c/__init__.pyo
 1792${PYSITELIB}/sympy/parsing/c/c_parser.py
 1793${PYSITELIB}/sympy/parsing/c/c_parser.pyc
 1794${PYSITELIB}/sympy/parsing/c/c_parser.pyo
 1795${PYSITELIB}/sympy/parsing/fortran/__init__.py
 1796${PYSITELIB}/sympy/parsing/fortran/__init__.pyc
 1797${PYSITELIB}/sympy/parsing/fortran/__init__.pyo
 1798${PYSITELIB}/sympy/parsing/fortran/fortran_parser.py
 1799${PYSITELIB}/sympy/parsing/fortran/fortran_parser.pyc
 1800${PYSITELIB}/sympy/parsing/fortran/fortran_parser.pyo
1768${PYSITELIB}/sympy/parsing/latex/LICENSE.txt 1801${PYSITELIB}/sympy/parsing/latex/LICENSE.txt
1769${PYSITELIB}/sympy/parsing/latex/LaTeX.g4 1802${PYSITELIB}/sympy/parsing/latex/LaTeX.g4
1770${PYSITELIB}/sympy/parsing/latex/__init__.py 1803${PYSITELIB}/sympy/parsing/latex/__init__.py
1771${PYSITELIB}/sympy/parsing/latex/__init__.pyc 1804${PYSITELIB}/sympy/parsing/latex/__init__.pyc
1772${PYSITELIB}/sympy/parsing/latex/__init__.pyo 1805${PYSITELIB}/sympy/parsing/latex/__init__.pyo
1773${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.py 1806${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.py
1774${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.pyc 1807${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.pyc
1775${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.pyo 1808${PYSITELIB}/sympy/parsing/latex/_antlr/__init__.pyo
1776${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.py 1809${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.py
1777${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.pyc 1810${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.pyc
1778${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.pyo 1811${PYSITELIB}/sympy/parsing/latex/_antlr/latexlexer.pyo
1779${PYSITELIB}/sympy/parsing/latex/_antlr/latexparser.py 1812${PYSITELIB}/sympy/parsing/latex/_antlr/latexparser.py
1780${PYSITELIB}/sympy/parsing/latex/_antlr/latexparser.pyc 1813${PYSITELIB}/sympy/parsing/latex/_antlr/latexparser.pyc
@@ -1784,50 +1817,62 @@ ${PYSITELIB}/sympy/parsing/latex/_build_ @@ -1784,50 +1817,62 @@ ${PYSITELIB}/sympy/parsing/latex/_build_
1784${PYSITELIB}/sympy/parsing/latex/_build_latex_antlr.pyo 1817${PYSITELIB}/sympy/parsing/latex/_build_latex_antlr.pyo
1785${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.py 1818${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.py
1786${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.pyc 1819${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.pyc
1787${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.pyo 1820${PYSITELIB}/sympy/parsing/latex/_parse_latex_antlr.pyo
1788${PYSITELIB}/sympy/parsing/latex/errors.py 1821${PYSITELIB}/sympy/parsing/latex/errors.py
1789${PYSITELIB}/sympy/parsing/latex/errors.pyc 1822${PYSITELIB}/sympy/parsing/latex/errors.pyc
1790${PYSITELIB}/sympy/parsing/latex/errors.pyo 1823${PYSITELIB}/sympy/parsing/latex/errors.pyo
1791${PYSITELIB}/sympy/parsing/mathematica.py 1824${PYSITELIB}/sympy/parsing/mathematica.py
1792${PYSITELIB}/sympy/parsing/mathematica.pyc 1825${PYSITELIB}/sympy/parsing/mathematica.pyc
1793${PYSITELIB}/sympy/parsing/mathematica.pyo 1826${PYSITELIB}/sympy/parsing/mathematica.pyo
1794${PYSITELIB}/sympy/parsing/maxima.py 1827${PYSITELIB}/sympy/parsing/maxima.py
1795${PYSITELIB}/sympy/parsing/maxima.pyc 1828${PYSITELIB}/sympy/parsing/maxima.pyc
1796${PYSITELIB}/sympy/parsing/maxima.pyo 1829${PYSITELIB}/sympy/parsing/maxima.pyo
 1830${PYSITELIB}/sympy/parsing/sym_expr.py
 1831${PYSITELIB}/sympy/parsing/sym_expr.pyc
 1832${PYSITELIB}/sympy/parsing/sym_expr.pyo
1797${PYSITELIB}/sympy/parsing/sympy_parser.py 1833${PYSITELIB}/sympy/parsing/sympy_parser.py
1798${PYSITELIB}/sympy/parsing/sympy_parser.pyc 1834${PYSITELIB}/sympy/parsing/sympy_parser.pyc
1799${PYSITELIB}/sympy/parsing/sympy_parser.pyo 1835${PYSITELIB}/sympy/parsing/sympy_parser.pyo
1800${PYSITELIB}/sympy/parsing/tests/__init__.py 1836${PYSITELIB}/sympy/parsing/tests/__init__.py
1801${PYSITELIB}/sympy/parsing/tests/__init__.pyc 1837${PYSITELIB}/sympy/parsing/tests/__init__.pyc
1802${PYSITELIB}/sympy/parsing/tests/__init__.pyo 1838${PYSITELIB}/sympy/parsing/tests/__init__.pyo
1803${PYSITELIB}/sympy/parsing/tests/test_autolev.py 1839${PYSITELIB}/sympy/parsing/tests/test_autolev.py
1804${PYSITELIB}/sympy/parsing/tests/test_autolev.pyc 1840${PYSITELIB}/sympy/parsing/tests/test_autolev.pyc
1805${PYSITELIB}/sympy/parsing/tests/test_autolev.pyo 1841${PYSITELIB}/sympy/parsing/tests/test_autolev.pyo
 1842${PYSITELIB}/sympy/parsing/tests/test_c_parser.py
 1843${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyc
 1844${PYSITELIB}/sympy/parsing/tests/test_c_parser.pyo
 1845${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.py
 1846${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyc
 1847${PYSITELIB}/sympy/parsing/tests/test_fortran_parser.pyo
1806${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py 1848${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.py
1807${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc 1849${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyc
1808${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo 1850${PYSITELIB}/sympy/parsing/tests/test_implicit_multiplication_application.pyo
1809${PYSITELIB}/sympy/parsing/tests/test_latex.py 1851${PYSITELIB}/sympy/parsing/tests/test_latex.py
1810${PYSITELIB}/sympy/parsing/tests/test_latex.pyc 1852${PYSITELIB}/sympy/parsing/tests/test_latex.pyc
1811${PYSITELIB}/sympy/parsing/tests/test_latex.pyo 1853${PYSITELIB}/sympy/parsing/tests/test_latex.pyo
1812${PYSITELIB}/sympy/parsing/tests/test_latex_deps.py 1854${PYSITELIB}/sympy/parsing/tests/test_latex_deps.py
1813${PYSITELIB}/sympy/parsing/tests/test_latex_deps.pyc 1855${PYSITELIB}/sympy/parsing/tests/test_latex_deps.pyc
1814${PYSITELIB}/sympy/parsing/tests/test_latex_deps.pyo 1856${PYSITELIB}/sympy/parsing/tests/test_latex_deps.pyo
1815${PYSITELIB}/sympy/parsing/tests/test_mathematica.py 1857${PYSITELIB}/sympy/parsing/tests/test_mathematica.py
1816${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc 1858${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyc
1817${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo 1859${PYSITELIB}/sympy/parsing/tests/test_mathematica.pyo
1818${PYSITELIB}/sympy/parsing/tests/test_maxima.py 1860${PYSITELIB}/sympy/parsing/tests/test_maxima.py
1819${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc 1861${PYSITELIB}/sympy/parsing/tests/test_maxima.pyc
1820${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo 1862${PYSITELIB}/sympy/parsing/tests/test_maxima.pyo
 1863${PYSITELIB}/sympy/parsing/tests/test_sym_expr.py
 1864${PYSITELIB}/sympy/parsing/tests/test_sym_expr.pyc
 1865${PYSITELIB}/sympy/parsing/tests/test_sym_expr.pyo
1821${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.py 1866${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.py
1822${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyc 1867${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyc
1823${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyo 1868${PYSITELIB}/sympy/parsing/tests/test_sympy_parser.pyo
1824${PYSITELIB}/sympy/physics/__init__.py 1869${PYSITELIB}/sympy/physics/__init__.py
1825${PYSITELIB}/sympy/physics/__init__.pyc 1870${PYSITELIB}/sympy/physics/__init__.pyc
1826${PYSITELIB}/sympy/physics/__init__.pyo 1871${PYSITELIB}/sympy/physics/__init__.pyo
1827${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.py 1872${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.py
1828${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.pyc 1873${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.pyc
1829${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.pyo 1874${PYSITELIB}/sympy/physics/continuum_mechanics/__init__.pyo
1830${PYSITELIB}/sympy/physics/continuum_mechanics/beam.py 1875${PYSITELIB}/sympy/physics/continuum_mechanics/beam.py
1831${PYSITELIB}/sympy/physics/continuum_mechanics/beam.pyc 1876${PYSITELIB}/sympy/physics/continuum_mechanics/beam.pyc
1832${PYSITELIB}/sympy/physics/continuum_mechanics/beam.pyo 1877${PYSITELIB}/sympy/physics/continuum_mechanics/beam.pyo
1833${PYSITELIB}/sympy/physics/continuum_mechanics/tests/__init__.py 1878${PYSITELIB}/sympy/physics/continuum_mechanics/tests/__init__.py
@@ -1895,26 +1940,29 @@ ${PYSITELIB}/sympy/physics/mechanics/tes @@ -1895,26 +1940,29 @@ ${PYSITELIB}/sympy/physics/mechanics/tes
1895${PYSITELIB}/sympy/physics/mechanics/tests/test_body.pyo 1940${PYSITELIB}/sympy/physics/mechanics/tests/test_body.pyo
1896${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.py 1941${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.py
1897${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyc 1942${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyc
1898${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyo 1943${PYSITELIB}/sympy/physics/mechanics/tests/test_functions.pyo
1899${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.py 1944${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.py
1900${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyc 1945${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyc
1901${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyo 1946${PYSITELIB}/sympy/physics/mechanics/tests/test_kane.pyo
1902${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.py 1947${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.py
1903${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyc 1948${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyc
1904${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyo 1949${PYSITELIB}/sympy/physics/mechanics/tests/test_kane2.pyo
1905${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.py 1950${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.py
1906${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyc 1951${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyc
1907${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyo 1952${PYSITELIB}/sympy/physics/mechanics/tests/test_kane3.pyo
 1953${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.py
 1954${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.pyc
 1955${PYSITELIB}/sympy/physics/mechanics/tests/test_kane4.pyo
1908${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py 1956${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.py
1909${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc 1957${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyc
1910${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo 1958${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange.pyo
1911${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.py 1959${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.py
1912${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.pyc 1960${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.pyc
1913${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.pyo 1961${PYSITELIB}/sympy/physics/mechanics/tests/test_lagrange2.pyo
1914${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.py 1962${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.py
1915${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.pyc 1963${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.pyc
1916${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.pyo 1964${PYSITELIB}/sympy/physics/mechanics/tests/test_linearize.pyo
1917${PYSITELIB}/sympy/physics/mechanics/tests/test_models.py 1965${PYSITELIB}/sympy/physics/mechanics/tests/test_models.py
1918${PYSITELIB}/sympy/physics/mechanics/tests/test_models.pyc 1966${PYSITELIB}/sympy/physics/mechanics/tests/test_models.pyc
1919${PYSITELIB}/sympy/physics/mechanics/tests/test_models.pyo 1967${PYSITELIB}/sympy/physics/mechanics/tests/test_models.pyo
1920${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.py 1968${PYSITELIB}/sympy/physics/mechanics/tests/test_particle.py
@@ -1925,35 +1973,41 @@ ${PYSITELIB}/sympy/physics/mechanics/tes @@ -1925,35 +1973,41 @@ ${PYSITELIB}/sympy/physics/mechanics/tes
1925${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyo 1973${PYSITELIB}/sympy/physics/mechanics/tests/test_rigidbody.pyo
1926${PYSITELIB}/sympy/physics/mechanics/tests/test_system.py 1974${PYSITELIB}/sympy/physics/mechanics/tests/test_system.py
1927${PYSITELIB}/sympy/physics/mechanics/tests/test_system.pyc 1975${PYSITELIB}/sympy/physics/mechanics/tests/test_system.pyc
1928${PYSITELIB}/sympy/physics/mechanics/tests/test_system.pyo 1976${PYSITELIB}/sympy/physics/mechanics/tests/test_system.pyo
1929${PYSITELIB}/sympy/physics/optics/__init__.py 1977${PYSITELIB}/sympy/physics/optics/__init__.py
1930${PYSITELIB}/sympy/physics/optics/__init__.pyc 1978${PYSITELIB}/sympy/physics/optics/__init__.pyc
1931${PYSITELIB}/sympy/physics/optics/__init__.pyo 1979${PYSITELIB}/sympy/physics/optics/__init__.pyo
1932${PYSITELIB}/sympy/physics/optics/gaussopt.py 1980${PYSITELIB}/sympy/physics/optics/gaussopt.py
1933${PYSITELIB}/sympy/physics/optics/gaussopt.pyc 1981${PYSITELIB}/sympy/physics/optics/gaussopt.pyc
1934${PYSITELIB}/sympy/physics/optics/gaussopt.pyo 1982${PYSITELIB}/sympy/physics/optics/gaussopt.pyo
1935${PYSITELIB}/sympy/physics/optics/medium.py 1983${PYSITELIB}/sympy/physics/optics/medium.py
1936${PYSITELIB}/sympy/physics/optics/medium.pyc 1984${PYSITELIB}/sympy/physics/optics/medium.pyc
1937${PYSITELIB}/sympy/physics/optics/medium.pyo 1985${PYSITELIB}/sympy/physics/optics/medium.pyo
 1986${PYSITELIB}/sympy/physics/optics/polarization.py
 1987${PYSITELIB}/sympy/physics/optics/polarization.pyc
 1988${PYSITELIB}/sympy/physics/optics/polarization.pyo
1938${PYSITELIB}/sympy/physics/optics/tests/__init__.py 1989${PYSITELIB}/sympy/physics/optics/tests/__init__.py
1939${PYSITELIB}/sympy/physics/optics/tests/__init__.pyc 1990${PYSITELIB}/sympy/physics/optics/tests/__init__.pyc
1940${PYSITELIB}/sympy/physics/optics/tests/__init__.pyo 1991${PYSITELIB}/sympy/physics/optics/tests/__init__.pyo
1941${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.py 1992${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.py
1942${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.pyc 1993${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.pyc
1943${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.pyo 1994${PYSITELIB}/sympy/physics/optics/tests/test_gaussopt.pyo
1944${PYSITELIB}/sympy/physics/optics/tests/test_medium.py 1995${PYSITELIB}/sympy/physics/optics/tests/test_medium.py
1945${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyc 1996${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyc
1946${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyo 1997${PYSITELIB}/sympy/physics/optics/tests/test_medium.pyo
 1998${PYSITELIB}/sympy/physics/optics/tests/test_polarization.py
 1999${PYSITELIB}/sympy/physics/optics/tests/test_polarization.pyc
 2000${PYSITELIB}/sympy/physics/optics/tests/test_polarization.pyo
1947${PYSITELIB}/sympy/physics/optics/tests/test_utils.py 2001${PYSITELIB}/sympy/physics/optics/tests/test_utils.py
1948${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyc 2002${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyc
1949${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyo 2003${PYSITELIB}/sympy/physics/optics/tests/test_utils.pyo
1950${PYSITELIB}/sympy/physics/optics/tests/test_waves.py 2004${PYSITELIB}/sympy/physics/optics/tests/test_waves.py
1951${PYSITELIB}/sympy/physics/optics/tests/test_waves.pyc 2005${PYSITELIB}/sympy/physics/optics/tests/test_waves.pyc
1952${PYSITELIB}/sympy/physics/optics/tests/test_waves.pyo 2006${PYSITELIB}/sympy/physics/optics/tests/test_waves.pyo
1953${PYSITELIB}/sympy/physics/optics/utils.py 2007${PYSITELIB}/sympy/physics/optics/utils.py
1954${PYSITELIB}/sympy/physics/optics/utils.pyc 2008${PYSITELIB}/sympy/physics/optics/utils.pyc
1955${PYSITELIB}/sympy/physics/optics/utils.pyo 2009${PYSITELIB}/sympy/physics/optics/utils.pyo
1956${PYSITELIB}/sympy/physics/optics/waves.py 2010${PYSITELIB}/sympy/physics/optics/waves.py
1957${PYSITELIB}/sympy/physics/optics/waves.pyc 2011${PYSITELIB}/sympy/physics/optics/waves.pyc
1958${PYSITELIB}/sympy/physics/optics/waves.pyo 2012${PYSITELIB}/sympy/physics/optics/waves.pyo
1959${PYSITELIB}/sympy/physics/paulialgebra.py 2013${PYSITELIB}/sympy/physics/paulialgebra.py
@@ -2201,41 +2255,53 @@ ${PYSITELIB}/sympy/physics/tests/test_pr @@ -2201,41 +2255,53 @@ ${PYSITELIB}/sympy/physics/tests/test_pr
2201${PYSITELIB}/sympy/physics/tests/test_pring.pyo 2255${PYSITELIB}/sympy/physics/tests/test_pring.pyo
2202${PYSITELIB}/sympy/physics/tests/test_qho_1d.py 2256${PYSITELIB}/sympy/physics/tests/test_qho_1d.py
2203${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyc 2257${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyc
2204${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyo 2258${PYSITELIB}/sympy/physics/tests/test_qho_1d.pyo
2205${PYSITELIB}/sympy/physics/tests/test_secondquant.py 2259${PYSITELIB}/sympy/physics/tests/test_secondquant.py
2206${PYSITELIB}/sympy/physics/tests/test_secondquant.pyc 2260${PYSITELIB}/sympy/physics/tests/test_secondquant.pyc
2207${PYSITELIB}/sympy/physics/tests/test_secondquant.pyo 2261${PYSITELIB}/sympy/physics/tests/test_secondquant.pyo
2208${PYSITELIB}/sympy/physics/tests/test_sho.py 2262${PYSITELIB}/sympy/physics/tests/test_sho.py
2209${PYSITELIB}/sympy/physics/tests/test_sho.pyc 2263${PYSITELIB}/sympy/physics/tests/test_sho.pyc
2210${PYSITELIB}/sympy/physics/tests/test_sho.pyo 2264${PYSITELIB}/sympy/physics/tests/test_sho.pyo
2211${PYSITELIB}/sympy/physics/units/__init__.py 2265${PYSITELIB}/sympy/physics/units/__init__.py
2212${PYSITELIB}/sympy/physics/units/__init__.pyc 2266${PYSITELIB}/sympy/physics/units/__init__.pyc
2213${PYSITELIB}/sympy/physics/units/__init__.pyo 2267${PYSITELIB}/sympy/physics/units/__init__.pyo
2214${PYSITELIB}/sympy/physics/units/definitions.py 2268${PYSITELIB}/sympy/physics/units/definitions/__init__.py
2215${PYSITELIB}/sympy/physics/units/definitions.pyc 2269${PYSITELIB}/sympy/physics/units/definitions/__init__.pyc
2216${PYSITELIB}/sympy/physics/units/definitions.pyo 2270${PYSITELIB}/sympy/physics/units/definitions/__init__.pyo
 2271${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.py
 2272${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.pyc
 2273${PYSITELIB}/sympy/physics/units/definitions/dimension_definitions.pyo
 2274${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.py
 2275${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.pyc
 2276${PYSITELIB}/sympy/physics/units/definitions/unit_definitions.pyo
2217${PYSITELIB}/sympy/physics/units/dimensions.py 2277${PYSITELIB}/sympy/physics/units/dimensions.py
2218${PYSITELIB}/sympy/physics/units/dimensions.pyc 2278${PYSITELIB}/sympy/physics/units/dimensions.pyc
2219${PYSITELIB}/sympy/physics/units/dimensions.pyo 2279${PYSITELIB}/sympy/physics/units/dimensions.pyo
2220${PYSITELIB}/sympy/physics/units/prefixes.py 2280${PYSITELIB}/sympy/physics/units/prefixes.py
2221${PYSITELIB}/sympy/physics/units/prefixes.pyc 2281${PYSITELIB}/sympy/physics/units/prefixes.pyc
2222${PYSITELIB}/sympy/physics/units/prefixes.pyo 2282${PYSITELIB}/sympy/physics/units/prefixes.pyo
2223${PYSITELIB}/sympy/physics/units/quantities.py 2283${PYSITELIB}/sympy/physics/units/quantities.py
2224${PYSITELIB}/sympy/physics/units/quantities.pyc 2284${PYSITELIB}/sympy/physics/units/quantities.pyc
2225${PYSITELIB}/sympy/physics/units/quantities.pyo 2285${PYSITELIB}/sympy/physics/units/quantities.pyo
2226${PYSITELIB}/sympy/physics/units/systems/__init__.py 2286${PYSITELIB}/sympy/physics/units/systems/__init__.py
2227${PYSITELIB}/sympy/physics/units/systems/__init__.pyc 2287${PYSITELIB}/sympy/physics/units/systems/__init__.pyc
2228${PYSITELIB}/sympy/physics/units/systems/__init__.pyo 2288${PYSITELIB}/sympy/physics/units/systems/__init__.pyo
 2289${PYSITELIB}/sympy/physics/units/systems/cgs.py
 2290${PYSITELIB}/sympy/physics/units/systems/cgs.pyc
 2291${PYSITELIB}/sympy/physics/units/systems/cgs.pyo
 2292${PYSITELIB}/sympy/physics/units/systems/length_weight_time.py
 2293${PYSITELIB}/sympy/physics/units/systems/length_weight_time.pyc
 2294${PYSITELIB}/sympy/physics/units/systems/length_weight_time.pyo
2229${PYSITELIB}/sympy/physics/units/systems/mks.py 2295${PYSITELIB}/sympy/physics/units/systems/mks.py
2230${PYSITELIB}/sympy/physics/units/systems/mks.pyc 2296${PYSITELIB}/sympy/physics/units/systems/mks.pyc
2231${PYSITELIB}/sympy/physics/units/systems/mks.pyo 2297${PYSITELIB}/sympy/physics/units/systems/mks.pyo
2232${PYSITELIB}/sympy/physics/units/systems/mksa.py 2298${PYSITELIB}/sympy/physics/units/systems/mksa.py
2233${PYSITELIB}/sympy/physics/units/systems/mksa.pyc 2299${PYSITELIB}/sympy/physics/units/systems/mksa.pyc
2234${PYSITELIB}/sympy/physics/units/systems/mksa.pyo 2300${PYSITELIB}/sympy/physics/units/systems/mksa.pyo
2235${PYSITELIB}/sympy/physics/units/systems/natural.py 2301${PYSITELIB}/sympy/physics/units/systems/natural.py
2236${PYSITELIB}/sympy/physics/units/systems/natural.pyc 2302${PYSITELIB}/sympy/physics/units/systems/natural.pyc
2237${PYSITELIB}/sympy/physics/units/systems/natural.pyo 2303${PYSITELIB}/sympy/physics/units/systems/natural.pyo
2238${PYSITELIB}/sympy/physics/units/systems/si.py 2304${PYSITELIB}/sympy/physics/units/systems/si.py
2239${PYSITELIB}/sympy/physics/units/systems/si.pyc 2305${PYSITELIB}/sympy/physics/units/systems/si.pyc
2240${PYSITELIB}/sympy/physics/units/systems/si.pyo 2306${PYSITELIB}/sympy/physics/units/systems/si.pyo
2241${PYSITELIB}/sympy/physics/units/tests/__init__.py 2307${PYSITELIB}/sympy/physics/units/tests/__init__.py
@@ -2243,26 +2309,29 @@ ${PYSITELIB}/sympy/physics/units/tests/_ @@ -2243,26 +2309,29 @@ ${PYSITELIB}/sympy/physics/units/tests/_
2243${PYSITELIB}/sympy/physics/units/tests/__init__.pyo 2309${PYSITELIB}/sympy/physics/units/tests/__init__.pyo
2244${PYSITELIB}/sympy/physics/units/tests/test_dimensions.py 2310${PYSITELIB}/sympy/physics/units/tests/test_dimensions.py
2245${PYSITELIB}/sympy/physics/units/tests/test_dimensions.pyc 2311${PYSITELIB}/sympy/physics/units/tests/test_dimensions.pyc
2246${PYSITELIB}/sympy/physics/units/tests/test_dimensions.pyo 2312${PYSITELIB}/sympy/physics/units/tests/test_dimensions.pyo
2247${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.py 2313${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.py
2248${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.pyc 2314${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.pyc
2249${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.pyo 2315${PYSITELIB}/sympy/physics/units/tests/test_dimensionsystem.pyo
2250${PYSITELIB}/sympy/physics/units/tests/test_prefixes.py 2316${PYSITELIB}/sympy/physics/units/tests/test_prefixes.py
2251${PYSITELIB}/sympy/physics/units/tests/test_prefixes.pyc 2317${PYSITELIB}/sympy/physics/units/tests/test_prefixes.pyc
2252${PYSITELIB}/sympy/physics/units/tests/test_prefixes.pyo 2318${PYSITELIB}/sympy/physics/units/tests/test_prefixes.pyo
2253${PYSITELIB}/sympy/physics/units/tests/test_quantities.py 2319${PYSITELIB}/sympy/physics/units/tests/test_quantities.py
2254${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyc 2320${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyc
2255${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyo 2321${PYSITELIB}/sympy/physics/units/tests/test_quantities.pyo
 2322${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.py
 2323${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.pyc
 2324${PYSITELIB}/sympy/physics/units/tests/test_unit_system_cgs_gauss.pyo
2256${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.py 2325${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.py
2257${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyc 2326${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyc
2258${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyo 2327${PYSITELIB}/sympy/physics/units/tests/test_unitsystem.pyo
2259${PYSITELIB}/sympy/physics/units/tests/test_util.py 2328${PYSITELIB}/sympy/physics/units/tests/test_util.py
2260${PYSITELIB}/sympy/physics/units/tests/test_util.pyc 2329${PYSITELIB}/sympy/physics/units/tests/test_util.pyc
2261${PYSITELIB}/sympy/physics/units/tests/test_util.pyo 2330${PYSITELIB}/sympy/physics/units/tests/test_util.pyo
2262${PYSITELIB}/sympy/physics/units/unitsystem.py 2331${PYSITELIB}/sympy/physics/units/unitsystem.py
2263${PYSITELIB}/sympy/physics/units/unitsystem.pyc 2332${PYSITELIB}/sympy/physics/units/unitsystem.pyc
2264${PYSITELIB}/sympy/physics/units/unitsystem.pyo 2333${PYSITELIB}/sympy/physics/units/unitsystem.pyo
2265${PYSITELIB}/sympy/physics/units/util.py 2334${PYSITELIB}/sympy/physics/units/util.py
2266${PYSITELIB}/sympy/physics/units/util.pyc 2335${PYSITELIB}/sympy/physics/units/util.pyc
2267${PYSITELIB}/sympy/physics/units/util.pyo 2336${PYSITELIB}/sympy/physics/units/util.pyo
2268${PYSITELIB}/sympy/physics/vector/__init__.py 2337${PYSITELIB}/sympy/physics/vector/__init__.py
@@ -2321,35 +2390,41 @@ ${PYSITELIB}/sympy/physics/wigner.pyc @@ -2321,35 +2390,41 @@ ${PYSITELIB}/sympy/physics/wigner.pyc
2321${PYSITELIB}/sympy/physics/wigner.pyo 2390${PYSITELIB}/sympy/physics/wigner.pyo
2322${PYSITELIB}/sympy/plotting/__init__.py 2391${PYSITELIB}/sympy/plotting/__init__.py
2323${PYSITELIB}/sympy/plotting/__init__.pyc 2392${PYSITELIB}/sympy/plotting/__init__.pyc
2324${PYSITELIB}/sympy/plotting/__init__.pyo 2393${PYSITELIB}/sympy/plotting/__init__.pyo
2325${PYSITELIB}/sympy/plotting/experimental_lambdify.py 2394${PYSITELIB}/sympy/plotting/experimental_lambdify.py
2326${PYSITELIB}/sympy/plotting/experimental_lambdify.pyc 2395${PYSITELIB}/sympy/plotting/experimental_lambdify.pyc
2327${PYSITELIB}/sympy/plotting/experimental_lambdify.pyo 2396${PYSITELIB}/sympy/plotting/experimental_lambdify.pyo
2328${PYSITELIB}/sympy/plotting/intervalmath/__init__.py 2397${PYSITELIB}/sympy/plotting/intervalmath/__init__.py
2329${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyc 2398${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyc
2330${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyo 2399${PYSITELIB}/sympy/plotting/intervalmath/__init__.pyo
2331${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py 2400${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.py
2332${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc 2401${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyc
2333${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo 2402${PYSITELIB}/sympy/plotting/intervalmath/interval_arithmetic.pyo
 2403${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.py
 2404${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.pyc
 2405${PYSITELIB}/sympy/plotting/intervalmath/interval_membership.pyo
2334${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py 2406${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.py
2335${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc 2407${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyc
2336${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo 2408${PYSITELIB}/sympy/plotting/intervalmath/lib_interval.pyo
2337${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.py 2409${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.py
2338${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyc 2410${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyc
2339${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyo 2411${PYSITELIB}/sympy/plotting/intervalmath/tests/__init__.pyo
2340${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py 2412${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.py
2341${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc 2413${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyc
2342${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo 2414${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_functions.pyo
 2415${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.py
 2416${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.pyc
 2417${PYSITELIB}/sympy/plotting/intervalmath/tests/test_interval_membership.pyo
2343${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py 2418${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.py
2344${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc 2419${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyc
2345${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo 2420${PYSITELIB}/sympy/plotting/intervalmath/tests/test_intervalmath.pyo
2346${PYSITELIB}/sympy/plotting/plot.py 2421${PYSITELIB}/sympy/plotting/plot.py
2347${PYSITELIB}/sympy/plotting/plot.pyc 2422${PYSITELIB}/sympy/plotting/plot.pyc
2348${PYSITELIB}/sympy/plotting/plot.pyo 2423${PYSITELIB}/sympy/plotting/plot.pyo
2349${PYSITELIB}/sympy/plotting/plot_implicit.py 2424${PYSITELIB}/sympy/plotting/plot_implicit.py
2350${PYSITELIB}/sympy/plotting/plot_implicit.pyc 2425${PYSITELIB}/sympy/plotting/plot_implicit.pyc
2351${PYSITELIB}/sympy/plotting/plot_implicit.pyo 2426${PYSITELIB}/sympy/plotting/plot_implicit.pyo
2352${PYSITELIB}/sympy/plotting/pygletplot/__init__.py 2427${PYSITELIB}/sympy/plotting/pygletplot/__init__.py
2353${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyc 2428${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyc
2354${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyo 2429${PYSITELIB}/sympy/plotting/pygletplot/__init__.pyo
2355${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.py 2430${PYSITELIB}/sympy/plotting/pygletplot/color_scheme.py
@@ -2399,32 +2474,42 @@ ${PYSITELIB}/sympy/plotting/pygletplot/p @@ -2399,32 +2474,42 @@ ${PYSITELIB}/sympy/plotting/pygletplot/p
2399${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyo 2474${PYSITELIB}/sympy/plotting/pygletplot/plot_window.pyo
2400${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.py 2475${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.py
2401${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyc 2476${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyc
2402${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyo 2477${PYSITELIB}/sympy/plotting/pygletplot/tests/__init__.pyo
2403${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.py 2478${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.py
2404${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyc 2479${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyc
2405${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyo 2480${PYSITELIB}/sympy/plotting/pygletplot/tests/test_plotting.pyo
2406${PYSITELIB}/sympy/plotting/pygletplot/util.py 2481${PYSITELIB}/sympy/plotting/pygletplot/util.py
2407${PYSITELIB}/sympy/plotting/pygletplot/util.pyc 2482${PYSITELIB}/sympy/plotting/pygletplot/util.pyc
2408${PYSITELIB}/sympy/plotting/pygletplot/util.pyo 2483${PYSITELIB}/sympy/plotting/pygletplot/util.pyo
2409${PYSITELIB}/sympy/plotting/tests/__init__.py 2484${PYSITELIB}/sympy/plotting/tests/__init__.py
2410${PYSITELIB}/sympy/plotting/tests/__init__.pyc 2485${PYSITELIB}/sympy/plotting/tests/__init__.pyc
2411${PYSITELIB}/sympy/plotting/tests/__init__.pyo 2486${PYSITELIB}/sympy/plotting/tests/__init__.pyo
 2487${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.py
 2488${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.pyc
 2489${PYSITELIB}/sympy/plotting/tests/test_experimental_lambdify.pyo
2412${PYSITELIB}/sympy/plotting/tests/test_plot.py 2490${PYSITELIB}/sympy/plotting/tests/test_plot.py
2413${PYSITELIB}/sympy/plotting/tests/test_plot.pyc 2491${PYSITELIB}/sympy/plotting/tests/test_plot.pyc
2414${PYSITELIB}/sympy/plotting/tests/test_plot.pyo 2492${PYSITELIB}/sympy/plotting/tests/test_plot.pyo
2415${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py 2493${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.py
2416${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc 2494${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyc
2417${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo 2495${PYSITELIB}/sympy/plotting/tests/test_plot_implicit.pyo
 2496${PYSITELIB}/sympy/plotting/tests/test_region_and.png
 2497${PYSITELIB}/sympy/plotting/tests/test_region_not.png
 2498${PYSITELIB}/sympy/plotting/tests/test_region_or.png
 2499${PYSITELIB}/sympy/plotting/tests/test_region_xor.png
 2500${PYSITELIB}/sympy/plotting/tests/test_textplot.py
 2501${PYSITELIB}/sympy/plotting/tests/test_textplot.pyc
 2502${PYSITELIB}/sympy/plotting/tests/test_textplot.pyo
2418${PYSITELIB}/sympy/plotting/textplot.py 2503${PYSITELIB}/sympy/plotting/textplot.py
2419${PYSITELIB}/sympy/plotting/textplot.pyc 2504${PYSITELIB}/sympy/plotting/textplot.pyc
2420${PYSITELIB}/sympy/plotting/textplot.pyo 2505${PYSITELIB}/sympy/plotting/textplot.pyo
2421${PYSITELIB}/sympy/polys/__init__.py 2506${PYSITELIB}/sympy/polys/__init__.py
2422${PYSITELIB}/sympy/polys/__init__.pyc 2507${PYSITELIB}/sympy/polys/__init__.pyc
2423${PYSITELIB}/sympy/polys/__init__.pyo 2508${PYSITELIB}/sympy/polys/__init__.pyo
2424${PYSITELIB}/sympy/polys/agca/__init__.py 2509${PYSITELIB}/sympy/polys/agca/__init__.py
2425${PYSITELIB}/sympy/polys/agca/__init__.pyc 2510${PYSITELIB}/sympy/polys/agca/__init__.pyc
2426${PYSITELIB}/sympy/polys/agca/__init__.pyo 2511${PYSITELIB}/sympy/polys/agca/__init__.pyo
2427${PYSITELIB}/sympy/polys/agca/extensions.py 2512${PYSITELIB}/sympy/polys/agca/extensions.py
2428${PYSITELIB}/sympy/polys/agca/extensions.pyc 2513${PYSITELIB}/sympy/polys/agca/extensions.pyc
2429${PYSITELIB}/sympy/polys/agca/extensions.pyo 2514${PYSITELIB}/sympy/polys/agca/extensions.pyo
2430${PYSITELIB}/sympy/polys/agca/homomorphisms.py 2515${PYSITELIB}/sympy/polys/agca/homomorphisms.py
@@ -2834,26 +2919,29 @@ ${PYSITELIB}/sympy/printing/jscode.pyc @@ -2834,26 +2919,29 @@ ${PYSITELIB}/sympy/printing/jscode.pyc
2834${PYSITELIB}/sympy/printing/jscode.pyo 2919${PYSITELIB}/sympy/printing/jscode.pyo
2835${PYSITELIB}/sympy/printing/julia.py 2920${PYSITELIB}/sympy/printing/julia.py
2836${PYSITELIB}/sympy/printing/julia.pyc 2921${PYSITELIB}/sympy/printing/julia.pyc
2837${PYSITELIB}/sympy/printing/julia.pyo 2922${PYSITELIB}/sympy/printing/julia.pyo
2838${PYSITELIB}/sympy/printing/lambdarepr.py 2923${PYSITELIB}/sympy/printing/lambdarepr.py
2839${PYSITELIB}/sympy/printing/lambdarepr.pyc 2924${PYSITELIB}/sympy/printing/lambdarepr.pyc
2840${PYSITELIB}/sympy/printing/lambdarepr.pyo 2925${PYSITELIB}/sympy/printing/lambdarepr.pyo
2841${PYSITELIB}/sympy/printing/latex.py 2926${PYSITELIB}/sympy/printing/latex.py
2842${PYSITELIB}/sympy/printing/latex.pyc 2927${PYSITELIB}/sympy/printing/latex.pyc
2843${PYSITELIB}/sympy/printing/latex.pyo 2928${PYSITELIB}/sympy/printing/latex.pyo
2844${PYSITELIB}/sympy/printing/llvmjitcode.py 2929${PYSITELIB}/sympy/printing/llvmjitcode.py
2845${PYSITELIB}/sympy/printing/llvmjitcode.pyc 2930${PYSITELIB}/sympy/printing/llvmjitcode.pyc
2846${PYSITELIB}/sympy/printing/llvmjitcode.pyo 2931${PYSITELIB}/sympy/printing/llvmjitcode.pyo
 2932${PYSITELIB}/sympy/printing/maple.py
 2933${PYSITELIB}/sympy/printing/maple.pyc
 2934${PYSITELIB}/sympy/printing/maple.pyo
2847${PYSITELIB}/sympy/printing/mathematica.py 2935${PYSITELIB}/sympy/printing/mathematica.py
2848${PYSITELIB}/sympy/printing/mathematica.pyc 2936${PYSITELIB}/sympy/printing/mathematica.pyc
2849${PYSITELIB}/sympy/printing/mathematica.pyo 2937${PYSITELIB}/sympy/printing/mathematica.pyo
2850${PYSITELIB}/sympy/printing/mathml.py 2938${PYSITELIB}/sympy/printing/mathml.py
2851${PYSITELIB}/sympy/printing/mathml.pyc 2939${PYSITELIB}/sympy/printing/mathml.pyc
2852${PYSITELIB}/sympy/printing/mathml.pyo 2940${PYSITELIB}/sympy/printing/mathml.pyo
2853${PYSITELIB}/sympy/printing/octave.py 2941${PYSITELIB}/sympy/printing/octave.py
2854${PYSITELIB}/sympy/printing/octave.pyc 2942${PYSITELIB}/sympy/printing/octave.pyc
2855${PYSITELIB}/sympy/printing/octave.pyo 2943${PYSITELIB}/sympy/printing/octave.pyo
2856${PYSITELIB}/sympy/printing/precedence.py 2944${PYSITELIB}/sympy/printing/precedence.py
2857${PYSITELIB}/sympy/printing/precedence.pyc 2945${PYSITELIB}/sympy/printing/precedence.pyc
2858${PYSITELIB}/sympy/printing/precedence.pyo 2946${PYSITELIB}/sympy/printing/precedence.pyo
2859${PYSITELIB}/sympy/printing/pretty/__init__.py 2947${PYSITELIB}/sympy/printing/pretty/__init__.py
@@ -2936,26 +3024,29 @@ ${PYSITELIB}/sympy/printing/tests/test_j @@ -2936,26 +3024,29 @@ ${PYSITELIB}/sympy/printing/tests/test_j
2936${PYSITELIB}/sympy/printing/tests/test_jscode.pyo 3024${PYSITELIB}/sympy/printing/tests/test_jscode.pyo
2937${PYSITELIB}/sympy/printing/tests/test_julia.py 3025${PYSITELIB}/sympy/printing/tests/test_julia.py
2938${PYSITELIB}/sympy/printing/tests/test_julia.pyc 3026${PYSITELIB}/sympy/printing/tests/test_julia.pyc
2939${PYSITELIB}/sympy/printing/tests/test_julia.pyo 3027${PYSITELIB}/sympy/printing/tests/test_julia.pyo
2940${PYSITELIB}/sympy/printing/tests/test_lambdarepr.py 3028${PYSITELIB}/sympy/printing/tests/test_lambdarepr.py
2941${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyc 3029${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyc
2942${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyo 3030${PYSITELIB}/sympy/printing/tests/test_lambdarepr.pyo
2943${PYSITELIB}/sympy/printing/tests/test_latex.py 3031${PYSITELIB}/sympy/printing/tests/test_latex.py
2944${PYSITELIB}/sympy/printing/tests/test_latex.pyc 3032${PYSITELIB}/sympy/printing/tests/test_latex.pyc
2945${PYSITELIB}/sympy/printing/tests/test_latex.pyo 3033${PYSITELIB}/sympy/printing/tests/test_latex.pyo
2946${PYSITELIB}/sympy/printing/tests/test_llvmjit.py 3034${PYSITELIB}/sympy/printing/tests/test_llvmjit.py
2947${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyc 3035${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyc
2948${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyo 3036${PYSITELIB}/sympy/printing/tests/test_llvmjit.pyo
 3037${PYSITELIB}/sympy/printing/tests/test_maple.py
 3038${PYSITELIB}/sympy/printing/tests/test_maple.pyc
 3039${PYSITELIB}/sympy/printing/tests/test_maple.pyo
2949${PYSITELIB}/sympy/printing/tests/test_mathematica.py 3040${PYSITELIB}/sympy/printing/tests/test_mathematica.py
2950${PYSITELIB}/sympy/printing/tests/test_mathematica.pyc 3041${PYSITELIB}/sympy/printing/tests/test_mathematica.pyc
2951${PYSITELIB}/sympy/printing/tests/test_mathematica.pyo 3042${PYSITELIB}/sympy/printing/tests/test_mathematica.pyo
2952${PYSITELIB}/sympy/printing/tests/test_mathml.py 3043${PYSITELIB}/sympy/printing/tests/test_mathml.py
2953${PYSITELIB}/sympy/printing/tests/test_mathml.pyc 3044${PYSITELIB}/sympy/printing/tests/test_mathml.pyc
2954${PYSITELIB}/sympy/printing/tests/test_mathml.pyo 3045${PYSITELIB}/sympy/printing/tests/test_mathml.pyo
2955${PYSITELIB}/sympy/printing/tests/test_numpy.py 3046${PYSITELIB}/sympy/printing/tests/test_numpy.py
2956${PYSITELIB}/sympy/printing/tests/test_numpy.pyc 3047${PYSITELIB}/sympy/printing/tests/test_numpy.pyc
2957${PYSITELIB}/sympy/printing/tests/test_numpy.pyo 3048${PYSITELIB}/sympy/printing/tests/test_numpy.pyo
2958${PYSITELIB}/sympy/printing/tests/test_octave.py 3049${PYSITELIB}/sympy/printing/tests/test_octave.py
2959${PYSITELIB}/sympy/printing/tests/test_octave.pyc 3050${PYSITELIB}/sympy/printing/tests/test_octave.pyc
2960${PYSITELIB}/sympy/printing/tests/test_octave.pyo 3051${PYSITELIB}/sympy/printing/tests/test_octave.pyo
2961${PYSITELIB}/sympy/printing/tests/test_precedence.py 3052${PYSITELIB}/sympy/printing/tests/test_precedence.py
@@ -2981,26 +3072,29 @@ ${PYSITELIB}/sympy/printing/tests/test_r @@ -2981,26 +3072,29 @@ ${PYSITELIB}/sympy/printing/tests/test_r
2981${PYSITELIB}/sympy/printing/tests/test_rust.pyo 3072${PYSITELIB}/sympy/printing/tests/test_rust.pyo
2982${PYSITELIB}/sympy/printing/tests/test_str.py 3073${PYSITELIB}/sympy/printing/tests/test_str.py
2983${PYSITELIB}/sympy/printing/tests/test_str.pyc 3074${PYSITELIB}/sympy/printing/tests/test_str.pyc
2984${PYSITELIB}/sympy/printing/tests/test_str.pyo 3075${PYSITELIB}/sympy/printing/tests/test_str.pyo
2985${PYSITELIB}/sympy/printing/tests/test_tableform.py 3076${PYSITELIB}/sympy/printing/tests/test_tableform.py
2986${PYSITELIB}/sympy/printing/tests/test_tableform.pyc 3077${PYSITELIB}/sympy/printing/tests/test_tableform.pyc
2987${PYSITELIB}/sympy/printing/tests/test_tableform.pyo 3078${PYSITELIB}/sympy/printing/tests/test_tableform.pyo
2988${PYSITELIB}/sympy/printing/tests/test_tensorflow.py 3079${PYSITELIB}/sympy/printing/tests/test_tensorflow.py
2989${PYSITELIB}/sympy/printing/tests/test_tensorflow.pyc 3080${PYSITELIB}/sympy/printing/tests/test_tensorflow.pyc
2990${PYSITELIB}/sympy/printing/tests/test_tensorflow.pyo 3081${PYSITELIB}/sympy/printing/tests/test_tensorflow.pyo
2991${PYSITELIB}/sympy/printing/tests/test_theanocode.py 3082${PYSITELIB}/sympy/printing/tests/test_theanocode.py
2992${PYSITELIB}/sympy/printing/tests/test_theanocode.pyc 3083${PYSITELIB}/sympy/printing/tests/test_theanocode.pyc
2993${PYSITELIB}/sympy/printing/tests/test_theanocode.pyo 3084${PYSITELIB}/sympy/printing/tests/test_theanocode.pyo
 3085${PYSITELIB}/sympy/printing/tests/test_tree.py
 3086${PYSITELIB}/sympy/printing/tests/test_tree.pyc
 3087${PYSITELIB}/sympy/printing/tests/test_tree.pyo
2994${PYSITELIB}/sympy/printing/theanocode.py 3088${PYSITELIB}/sympy/printing/theanocode.py
2995${PYSITELIB}/sympy/printing/theanocode.pyc 3089${PYSITELIB}/sympy/printing/theanocode.pyc
2996${PYSITELIB}/sympy/printing/theanocode.pyo 3090${PYSITELIB}/sympy/printing/theanocode.pyo
2997${PYSITELIB}/sympy/printing/tree.py 3091${PYSITELIB}/sympy/printing/tree.py
2998${PYSITELIB}/sympy/printing/tree.pyc 3092${PYSITELIB}/sympy/printing/tree.pyc
2999${PYSITELIB}/sympy/printing/tree.pyo 3093${PYSITELIB}/sympy/printing/tree.pyo
3000${PYSITELIB}/sympy/release.py 3094${PYSITELIB}/sympy/release.py
3001${PYSITELIB}/sympy/release.pyc 3095${PYSITELIB}/sympy/release.pyc
3002${PYSITELIB}/sympy/release.pyo 3096${PYSITELIB}/sympy/release.pyo
3003${PYSITELIB}/sympy/sandbox/__init__.py 3097${PYSITELIB}/sympy/sandbox/__init__.py
3004${PYSITELIB}/sympy/sandbox/__init__.pyc 3098${PYSITELIB}/sympy/sandbox/__init__.pyc
3005${PYSITELIB}/sympy/sandbox/__init__.pyo 3099${PYSITELIB}/sympy/sandbox/__init__.pyo
3006${PYSITELIB}/sympy/sandbox/indexed_integrals.py 3100${PYSITELIB}/sympy/sandbox/indexed_integrals.py
@@ -3011,26 +3105,29 @@ ${PYSITELIB}/sympy/sandbox/tests/__init_ @@ -3011,26 +3105,29 @@ ${PYSITELIB}/sympy/sandbox/tests/__init_
3011${PYSITELIB}/sympy/sandbox/tests/__init__.pyo 3105${PYSITELIB}/sympy/sandbox/tests/__init__.pyo
3012${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.py 3106${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.py
3013${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.pyc 3107${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.pyc
3014${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.pyo 3108${PYSITELIB}/sympy/sandbox/tests/test_indexed_integrals.pyo
3015${PYSITELIB}/sympy/series/__init__.py 3109${PYSITELIB}/sympy/series/__init__.py
3016${PYSITELIB}/sympy/series/__init__.pyc 3110${PYSITELIB}/sympy/series/__init__.pyc
3017${PYSITELIB}/sympy/series/__init__.pyo 3111${PYSITELIB}/sympy/series/__init__.pyo
3018${PYSITELIB}/sympy/series/acceleration.py 3112${PYSITELIB}/sympy/series/acceleration.py
3019${PYSITELIB}/sympy/series/acceleration.pyc 3113${PYSITELIB}/sympy/series/acceleration.pyc
3020${PYSITELIB}/sympy/series/acceleration.pyo 3114${PYSITELIB}/sympy/series/acceleration.pyo
3021${PYSITELIB}/sympy/series/approximants.py 3115${PYSITELIB}/sympy/series/approximants.py
3022${PYSITELIB}/sympy/series/approximants.pyc 3116${PYSITELIB}/sympy/series/approximants.pyc
3023${PYSITELIB}/sympy/series/approximants.pyo 3117${PYSITELIB}/sympy/series/approximants.pyo
 3118${PYSITELIB}/sympy/series/aseries.py
 3119${PYSITELIB}/sympy/series/aseries.pyc
 3120${PYSITELIB}/sympy/series/aseries.pyo
3024${PYSITELIB}/sympy/series/benchmarks/__init__.py 3121${PYSITELIB}/sympy/series/benchmarks/__init__.py
3025${PYSITELIB}/sympy/series/benchmarks/__init__.pyc 3122${PYSITELIB}/sympy/series/benchmarks/__init__.pyc
3026${PYSITELIB}/sympy/series/benchmarks/__init__.pyo 3123${PYSITELIB}/sympy/series/benchmarks/__init__.pyo
3027${PYSITELIB}/sympy/series/benchmarks/bench_limit.py 3124${PYSITELIB}/sympy/series/benchmarks/bench_limit.py
3028${PYSITELIB}/sympy/series/benchmarks/bench_limit.pyc 3125${PYSITELIB}/sympy/series/benchmarks/bench_limit.pyc
3029${PYSITELIB}/sympy/series/benchmarks/bench_limit.pyo 3126${PYSITELIB}/sympy/series/benchmarks/bench_limit.pyo
3030${PYSITELIB}/sympy/series/benchmarks/bench_order.py 3127${PYSITELIB}/sympy/series/benchmarks/bench_order.py
3031${PYSITELIB}/sympy/series/benchmarks/bench_order.pyc 3128${PYSITELIB}/sympy/series/benchmarks/bench_order.pyc
3032${PYSITELIB}/sympy/series/benchmarks/bench_order.pyo 3129${PYSITELIB}/sympy/series/benchmarks/bench_order.pyo
3033${PYSITELIB}/sympy/series/formal.py 3130${PYSITELIB}/sympy/series/formal.py
3034${PYSITELIB}/sympy/series/formal.pyc 3131${PYSITELIB}/sympy/series/formal.pyc
3035${PYSITELIB}/sympy/series/formal.pyo 3132${PYSITELIB}/sympy/series/formal.pyo
3036${PYSITELIB}/sympy/series/fourier.py 3133${PYSITELIB}/sympy/series/fourier.py
@@ -3059,26 +3156,29 @@ ${PYSITELIB}/sympy/series/sequences.pyc @@ -3059,26 +3156,29 @@ ${PYSITELIB}/sympy/series/sequences.pyc
3059${PYSITELIB}/sympy/series/sequences.pyo 3156${PYSITELIB}/sympy/series/sequences.pyo
3060${PYSITELIB}/sympy/series/series.py 3157${PYSITELIB}/sympy/series/series.py
3061${PYSITELIB}/sympy/series/series.pyc 3158${PYSITELIB}/sympy/series/series.pyc
3062${PYSITELIB}/sympy/series/series.pyo 3159${PYSITELIB}/sympy/series/series.pyo
3063${PYSITELIB}/sympy/series/series_class.py 3160${PYSITELIB}/sympy/series/series_class.py
3064${PYSITELIB}/sympy/series/series_class.pyc 3161${PYSITELIB}/sympy/series/series_class.pyc
3065${PYSITELIB}/sympy/series/series_class.pyo 3162${PYSITELIB}/sympy/series/series_class.pyo
3066${PYSITELIB}/sympy/series/tests/__init__.py 3163${PYSITELIB}/sympy/series/tests/__init__.py
3067${PYSITELIB}/sympy/series/tests/__init__.pyc 3164${PYSITELIB}/sympy/series/tests/__init__.pyc
3068${PYSITELIB}/sympy/series/tests/__init__.pyo 3165${PYSITELIB}/sympy/series/tests/__init__.pyo
3069${PYSITELIB}/sympy/series/tests/test_approximants.py 3166${PYSITELIB}/sympy/series/tests/test_approximants.py
3070${PYSITELIB}/sympy/series/tests/test_approximants.pyc 3167${PYSITELIB}/sympy/series/tests/test_approximants.pyc
3071${PYSITELIB}/sympy/series/tests/test_approximants.pyo 3168${PYSITELIB}/sympy/series/tests/test_approximants.pyo
 3169${PYSITELIB}/sympy/series/tests/test_aseries.py
 3170${PYSITELIB}/sympy/series/tests/test_aseries.pyc
 3171${PYSITELIB}/sympy/series/tests/test_aseries.pyo
3072${PYSITELIB}/sympy/series/tests/test_demidovich.py 3172${PYSITELIB}/sympy/series/tests/test_demidovich.py
3073${PYSITELIB}/sympy/series/tests/test_demidovich.pyc 3173${PYSITELIB}/sympy/series/tests/test_demidovich.pyc
3074${PYSITELIB}/sympy/series/tests/test_demidovich.pyo 3174${PYSITELIB}/sympy/series/tests/test_demidovich.pyo
3075${PYSITELIB}/sympy/series/tests/test_formal.py 3175${PYSITELIB}/sympy/series/tests/test_formal.py
3076${PYSITELIB}/sympy/series/tests/test_formal.pyc 3176${PYSITELIB}/sympy/series/tests/test_formal.pyc
3077${PYSITELIB}/sympy/series/tests/test_formal.pyo 3177${PYSITELIB}/sympy/series/tests/test_formal.pyo
3078${PYSITELIB}/sympy/series/tests/test_fourier.py 3178${PYSITELIB}/sympy/series/tests/test_fourier.py
3079${PYSITELIB}/sympy/series/tests/test_fourier.pyc 3179${PYSITELIB}/sympy/series/tests/test_fourier.pyc
3080${PYSITELIB}/sympy/series/tests/test_fourier.pyo 3180${PYSITELIB}/sympy/series/tests/test_fourier.pyo
3081${PYSITELIB}/sympy/series/tests/test_gruntz.py 3181${PYSITELIB}/sympy/series/tests/test_gruntz.py
3082${PYSITELIB}/sympy/series/tests/test_gruntz.pyc 3182${PYSITELIB}/sympy/series/tests/test_gruntz.pyc
3083${PYSITELIB}/sympy/series/tests/test_gruntz.pyo 3183${PYSITELIB}/sympy/series/tests/test_gruntz.pyo
3084${PYSITELIB}/sympy/series/tests/test_kauers.py 3184${PYSITELIB}/sympy/series/tests/test_kauers.py
@@ -3134,47 +3234,53 @@ ${PYSITELIB}/sympy/sets/handlers/interse @@ -3134,47 +3234,53 @@ ${PYSITELIB}/sympy/sets/handlers/interse
3134${PYSITELIB}/sympy/sets/handlers/intersection.pyo 3234${PYSITELIB}/sympy/sets/handlers/intersection.pyo
3135${PYSITELIB}/sympy/sets/handlers/mul.py 3235${PYSITELIB}/sympy/sets/handlers/mul.py
3136${PYSITELIB}/sympy/sets/handlers/mul.pyc 3236${PYSITELIB}/sympy/sets/handlers/mul.pyc
3137${PYSITELIB}/sympy/sets/handlers/mul.pyo 3237${PYSITELIB}/sympy/sets/handlers/mul.pyo
3138${PYSITELIB}/sympy/sets/handlers/power.py 3238${PYSITELIB}/sympy/sets/handlers/power.py
3139${PYSITELIB}/sympy/sets/handlers/power.pyc 3239${PYSITELIB}/sympy/sets/handlers/power.pyc
3140${PYSITELIB}/sympy/sets/handlers/power.pyo 3240${PYSITELIB}/sympy/sets/handlers/power.pyo
3141${PYSITELIB}/sympy/sets/handlers/union.py 3241${PYSITELIB}/sympy/sets/handlers/union.py
3142${PYSITELIB}/sympy/sets/handlers/union.pyc 3242${PYSITELIB}/sympy/sets/handlers/union.pyc
3143${PYSITELIB}/sympy/sets/handlers/union.pyo 3243${PYSITELIB}/sympy/sets/handlers/union.pyo
3144${PYSITELIB}/sympy/sets/ordinals.py 3244${PYSITELIB}/sympy/sets/ordinals.py
3145${PYSITELIB}/sympy/sets/ordinals.pyc 3245${PYSITELIB}/sympy/sets/ordinals.pyc
3146${PYSITELIB}/sympy/sets/ordinals.pyo 3246${PYSITELIB}/sympy/sets/ordinals.pyo
 3247${PYSITELIB}/sympy/sets/powerset.py
 3248${PYSITELIB}/sympy/sets/powerset.pyc
 3249${PYSITELIB}/sympy/sets/powerset.pyo
3147${PYSITELIB}/sympy/sets/setexpr.py 3250${PYSITELIB}/sympy/sets/setexpr.py
3148${PYSITELIB}/sympy/sets/setexpr.pyc 3251${PYSITELIB}/sympy/sets/setexpr.pyc
3149${PYSITELIB}/sympy/sets/setexpr.pyo 3252${PYSITELIB}/sympy/sets/setexpr.pyo
3150${PYSITELIB}/sympy/sets/sets.py 3253${PYSITELIB}/sympy/sets/sets.py
3151${PYSITELIB}/sympy/sets/sets.pyc 3254${PYSITELIB}/sympy/sets/sets.pyc
3152${PYSITELIB}/sympy/sets/sets.pyo 3255${PYSITELIB}/sympy/sets/sets.pyo
3153${PYSITELIB}/sympy/sets/tests/__init__.py 3256${PYSITELIB}/sympy/sets/tests/__init__.py
3154${PYSITELIB}/sympy/sets/tests/__init__.pyc 3257${PYSITELIB}/sympy/sets/tests/__init__.pyc
3155${PYSITELIB}/sympy/sets/tests/__init__.pyo 3258${PYSITELIB}/sympy/sets/tests/__init__.pyo
3156${PYSITELIB}/sympy/sets/tests/test_conditionset.py 3259${PYSITELIB}/sympy/sets/tests/test_conditionset.py
3157${PYSITELIB}/sympy/sets/tests/test_conditionset.pyc 3260${PYSITELIB}/sympy/sets/tests/test_conditionset.pyc
3158${PYSITELIB}/sympy/sets/tests/test_conditionset.pyo 3261${PYSITELIB}/sympy/sets/tests/test_conditionset.pyo
3159${PYSITELIB}/sympy/sets/tests/test_contains.py 3262${PYSITELIB}/sympy/sets/tests/test_contains.py
3160${PYSITELIB}/sympy/sets/tests/test_contains.pyc 3263${PYSITELIB}/sympy/sets/tests/test_contains.pyc
3161${PYSITELIB}/sympy/sets/tests/test_contains.pyo 3264${PYSITELIB}/sympy/sets/tests/test_contains.pyo
3162${PYSITELIB}/sympy/sets/tests/test_fancysets.py 3265${PYSITELIB}/sympy/sets/tests/test_fancysets.py
3163${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc 3266${PYSITELIB}/sympy/sets/tests/test_fancysets.pyc
3164${PYSITELIB}/sympy/sets/tests/test_fancysets.pyo 3267${PYSITELIB}/sympy/sets/tests/test_fancysets.pyo
3165${PYSITELIB}/sympy/sets/tests/test_ordinals.py 3268${PYSITELIB}/sympy/sets/tests/test_ordinals.py
3166${PYSITELIB}/sympy/sets/tests/test_ordinals.pyc 3269${PYSITELIB}/sympy/sets/tests/test_ordinals.pyc
3167${PYSITELIB}/sympy/sets/tests/test_ordinals.pyo 3270${PYSITELIB}/sympy/sets/tests/test_ordinals.pyo
 3271${PYSITELIB}/sympy/sets/tests/test_powerset.py
 3272${PYSITELIB}/sympy/sets/tests/test_powerset.pyc
 3273${PYSITELIB}/sympy/sets/tests/test_powerset.pyo
3168${PYSITELIB}/sympy/sets/tests/test_setexpr.py 3274${PYSITELIB}/sympy/sets/tests/test_setexpr.py
3169${PYSITELIB}/sympy/sets/tests/test_setexpr.pyc 3275${PYSITELIB}/sympy/sets/tests/test_setexpr.pyc
3170${PYSITELIB}/sympy/sets/tests/test_setexpr.pyo 3276${PYSITELIB}/sympy/sets/tests/test_setexpr.pyo
3171${PYSITELIB}/sympy/sets/tests/test_sets.py 3277${PYSITELIB}/sympy/sets/tests/test_sets.py
3172${PYSITELIB}/sympy/sets/tests/test_sets.pyc 3278${PYSITELIB}/sympy/sets/tests/test_sets.pyc
3173${PYSITELIB}/sympy/sets/tests/test_sets.pyo 3279${PYSITELIB}/sympy/sets/tests/test_sets.pyo
3174${PYSITELIB}/sympy/simplify/__init__.py 3280${PYSITELIB}/sympy/simplify/__init__.py
3175${PYSITELIB}/sympy/simplify/__init__.pyc 3281${PYSITELIB}/sympy/simplify/__init__.pyc
3176${PYSITELIB}/sympy/simplify/__init__.pyo 3282${PYSITELIB}/sympy/simplify/__init__.pyo
3177${PYSITELIB}/sympy/simplify/combsimp.py 3283${PYSITELIB}/sympy/simplify/combsimp.py
3178${PYSITELIB}/sympy/simplify/combsimp.pyc 3284${PYSITELIB}/sympy/simplify/combsimp.pyc
3179${PYSITELIB}/sympy/simplify/combsimp.pyo 3285${PYSITELIB}/sympy/simplify/combsimp.pyo
3180${PYSITELIB}/sympy/simplify/cse_main.py 3286${PYSITELIB}/sympy/simplify/cse_main.py
@@ -3365,59 +3471,77 @@ ${PYSITELIB}/sympy/stats/error_prop.pyc @@ -3365,59 +3471,77 @@ ${PYSITELIB}/sympy/stats/error_prop.pyc
3365${PYSITELIB}/sympy/stats/error_prop.pyo 3471${PYSITELIB}/sympy/stats/error_prop.pyo
3366${PYSITELIB}/sympy/stats/frv.py 3472${PYSITELIB}/sympy/stats/frv.py
3367${PYSITELIB}/sympy/stats/frv.pyc 3473${PYSITELIB}/sympy/stats/frv.pyc
3368${PYSITELIB}/sympy/stats/frv.pyo 3474${PYSITELIB}/sympy/stats/frv.pyo
3369${PYSITELIB}/sympy/stats/frv_types.py 3475${PYSITELIB}/sympy/stats/frv_types.py
3370${PYSITELIB}/sympy/stats/frv_types.pyc 3476${PYSITELIB}/sympy/stats/frv_types.pyc
3371${PYSITELIB}/sympy/stats/frv_types.pyo 3477${PYSITELIB}/sympy/stats/frv_types.pyo
3372${PYSITELIB}/sympy/stats/joint_rv.py 3478${PYSITELIB}/sympy/stats/joint_rv.py
3373${PYSITELIB}/sympy/stats/joint_rv.pyc 3479${PYSITELIB}/sympy/stats/joint_rv.pyc
3374${PYSITELIB}/sympy/stats/joint_rv.pyo 3480${PYSITELIB}/sympy/stats/joint_rv.pyo
3375${PYSITELIB}/sympy/stats/joint_rv_types.py 3481${PYSITELIB}/sympy/stats/joint_rv_types.py
3376${PYSITELIB}/sympy/stats/joint_rv_types.pyc 3482${PYSITELIB}/sympy/stats/joint_rv_types.pyc
3377${PYSITELIB}/sympy/stats/joint_rv_types.pyo 3483${PYSITELIB}/sympy/stats/joint_rv_types.pyo
 3484${PYSITELIB}/sympy/stats/random_matrix.py
 3485${PYSITELIB}/sympy/stats/random_matrix.pyc
 3486${PYSITELIB}/sympy/stats/random_matrix.pyo
 3487${PYSITELIB}/sympy/stats/random_matrix_models.py
 3488${PYSITELIB}/sympy/stats/random_matrix_models.pyc
 3489${PYSITELIB}/sympy/stats/random_matrix_models.pyo
3378${PYSITELIB}/sympy/stats/rv.py 3490${PYSITELIB}/sympy/stats/rv.py
3379${PYSITELIB}/sympy/stats/rv.pyc 3491${PYSITELIB}/sympy/stats/rv.pyc
3380${PYSITELIB}/sympy/stats/rv.pyo 3492${PYSITELIB}/sympy/stats/rv.pyo
3381${PYSITELIB}/sympy/stats/rv_interface.py 3493${PYSITELIB}/sympy/stats/rv_interface.py
3382${PYSITELIB}/sympy/stats/rv_interface.pyc 3494${PYSITELIB}/sympy/stats/rv_interface.pyc
3383${PYSITELIB}/sympy/stats/rv_interface.pyo 3495${PYSITELIB}/sympy/stats/rv_interface.pyo
 3496${PYSITELIB}/sympy/stats/stochastic_process.py
 3497${PYSITELIB}/sympy/stats/stochastic_process.pyc
 3498${PYSITELIB}/sympy/stats/stochastic_process.pyo
 3499${PYSITELIB}/sympy/stats/stochastic_process_types.py
 3500${PYSITELIB}/sympy/stats/stochastic_process_types.pyc
 3501${PYSITELIB}/sympy/stats/stochastic_process_types.pyo
3384${PYSITELIB}/sympy/stats/symbolic_probability.py 3502${PYSITELIB}/sympy/stats/symbolic_probability.py
3385${PYSITELIB}/sympy/stats/symbolic_probability.pyc 3503${PYSITELIB}/sympy/stats/symbolic_probability.pyc
3386${PYSITELIB}/sympy/stats/symbolic_probability.pyo 3504${PYSITELIB}/sympy/stats/symbolic_probability.pyo
3387${PYSITELIB}/sympy/stats/tests/__init__.py 3505${PYSITELIB}/sympy/stats/tests/__init__.py
3388${PYSITELIB}/sympy/stats/tests/__init__.pyc 3506${PYSITELIB}/sympy/stats/tests/__init__.pyc
3389${PYSITELIB}/sympy/stats/tests/__init__.pyo 3507${PYSITELIB}/sympy/stats/tests/__init__.pyo
3390${PYSITELIB}/sympy/stats/tests/test_continuous_rv.py 3508${PYSITELIB}/sympy/stats/tests/test_continuous_rv.py
3391${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyc 3509${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyc
3392${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyo 3510${PYSITELIB}/sympy/stats/tests/test_continuous_rv.pyo
3393${PYSITELIB}/sympy/stats/tests/test_discrete_rv.py 3511${PYSITELIB}/sympy/stats/tests/test_discrete_rv.py
3394${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyc 3512${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyc
3395${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyo 3513${PYSITELIB}/sympy/stats/tests/test_discrete_rv.pyo
3396${PYSITELIB}/sympy/stats/tests/test_error_prop.py 3514${PYSITELIB}/sympy/stats/tests/test_error_prop.py
3397${PYSITELIB}/sympy/stats/tests/test_error_prop.pyc 3515${PYSITELIB}/sympy/stats/tests/test_error_prop.pyc
3398${PYSITELIB}/sympy/stats/tests/test_error_prop.pyo 3516${PYSITELIB}/sympy/stats/tests/test_error_prop.pyo
3399${PYSITELIB}/sympy/stats/tests/test_finite_rv.py 3517${PYSITELIB}/sympy/stats/tests/test_finite_rv.py
3400${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyc 3518${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyc
3401${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyo 3519${PYSITELIB}/sympy/stats/tests/test_finite_rv.pyo
3402${PYSITELIB}/sympy/stats/tests/test_joint_rv.py 3520${PYSITELIB}/sympy/stats/tests/test_joint_rv.py
3403${PYSITELIB}/sympy/stats/tests/test_joint_rv.pyc 3521${PYSITELIB}/sympy/stats/tests/test_joint_rv.pyc
3404${PYSITELIB}/sympy/stats/tests/test_joint_rv.pyo 3522${PYSITELIB}/sympy/stats/tests/test_joint_rv.pyo
3405${PYSITELIB}/sympy/stats/tests/test_mix.py 3523${PYSITELIB}/sympy/stats/tests/test_mix.py
3406${PYSITELIB}/sympy/stats/tests/test_mix.pyc 3524${PYSITELIB}/sympy/stats/tests/test_mix.pyc
3407${PYSITELIB}/sympy/stats/tests/test_mix.pyo 3525${PYSITELIB}/sympy/stats/tests/test_mix.pyo
 3526${PYSITELIB}/sympy/stats/tests/test_random_matrix.py
 3527${PYSITELIB}/sympy/stats/tests/test_random_matrix.pyc
 3528${PYSITELIB}/sympy/stats/tests/test_random_matrix.pyo
3408${PYSITELIB}/sympy/stats/tests/test_rv.py 3529${PYSITELIB}/sympy/stats/tests/test_rv.py
3409${PYSITELIB}/sympy/stats/tests/test_rv.pyc 3530${PYSITELIB}/sympy/stats/tests/test_rv.pyc
3410${PYSITELIB}/sympy/stats/tests/test_rv.pyo 3531${PYSITELIB}/sympy/stats/tests/test_rv.pyo
 3532${PYSITELIB}/sympy/stats/tests/test_stochastic_process.py
 3533${PYSITELIB}/sympy/stats/tests/test_stochastic_process.pyc
 3534${PYSITELIB}/sympy/stats/tests/test_stochastic_process.pyo
3411${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.py 3535${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.py
3412${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyc 3536${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyc
3413${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyo 3537${PYSITELIB}/sympy/stats/tests/test_symbolic_probability.pyo
3414${PYSITELIB}/sympy/strategies/__init__.py 3538${PYSITELIB}/sympy/strategies/__init__.py
3415${PYSITELIB}/sympy/strategies/__init__.pyc 3539${PYSITELIB}/sympy/strategies/__init__.pyc
3416${PYSITELIB}/sympy/strategies/__init__.pyo 3540${PYSITELIB}/sympy/strategies/__init__.pyo
3417${PYSITELIB}/sympy/strategies/branch/__init__.py 3541${PYSITELIB}/sympy/strategies/branch/__init__.py
3418${PYSITELIB}/sympy/strategies/branch/__init__.pyc 3542${PYSITELIB}/sympy/strategies/branch/__init__.pyc
3419${PYSITELIB}/sympy/strategies/branch/__init__.pyo 3543${PYSITELIB}/sympy/strategies/branch/__init__.pyo
3420${PYSITELIB}/sympy/strategies/branch/core.py 3544${PYSITELIB}/sympy/strategies/branch/core.py
3421${PYSITELIB}/sympy/strategies/branch/core.pyc 3545${PYSITELIB}/sympy/strategies/branch/core.pyc
3422${PYSITELIB}/sympy/strategies/branch/core.pyo 3546${PYSITELIB}/sympy/strategies/branch/core.pyo
3423${PYSITELIB}/sympy/strategies/branch/tests/__init__.py 3547${PYSITELIB}/sympy/strategies/branch/tests/__init__.py
@@ -3473,53 +3597,62 @@ ${PYSITELIB}/sympy/strategies/traverse.p @@ -3473,53 +3597,62 @@ ${PYSITELIB}/sympy/strategies/traverse.p
3473${PYSITELIB}/sympy/strategies/traverse.pyo 3597${PYSITELIB}/sympy/strategies/traverse.pyo
3474${PYSITELIB}/sympy/strategies/tree.py 3598${PYSITELIB}/sympy/strategies/tree.py
3475${PYSITELIB}/sympy/strategies/tree.pyc 3599${PYSITELIB}/sympy/strategies/tree.pyc
3476${PYSITELIB}/sympy/strategies/tree.pyo 3600${PYSITELIB}/sympy/strategies/tree.pyo
3477${PYSITELIB}/sympy/strategies/util.py 3601${PYSITELIB}/sympy/strategies/util.py
3478${PYSITELIB}/sympy/strategies/util.pyc 3602${PYSITELIB}/sympy/strategies/util.pyc
3479${PYSITELIB}/sympy/strategies/util.pyo 3603${PYSITELIB}/sympy/strategies/util.pyo
3480${PYSITELIB}/sympy/tensor/__init__.py 3604${PYSITELIB}/sympy/tensor/__init__.py
3481${PYSITELIB}/sympy/tensor/__init__.pyc 3605${PYSITELIB}/sympy/tensor/__init__.pyc
3482${PYSITELIB}/sympy/tensor/__init__.pyo 3606${PYSITELIB}/sympy/tensor/__init__.pyo
3483${PYSITELIB}/sympy/tensor/array/__init__.py 3607${PYSITELIB}/sympy/tensor/array/__init__.py
3484${PYSITELIB}/sympy/tensor/array/__init__.pyc 3608${PYSITELIB}/sympy/tensor/array/__init__.pyc
3485${PYSITELIB}/sympy/tensor/array/__init__.pyo 3609${PYSITELIB}/sympy/tensor/array/__init__.pyo
 3610${PYSITELIB}/sympy/tensor/array/array_comprehension.py
 3611${PYSITELIB}/sympy/tensor/array/array_comprehension.pyc
 3612${PYSITELIB}/sympy/tensor/array/array_comprehension.pyo
3486${PYSITELIB}/sympy/tensor/array/arrayop.py 3613${PYSITELIB}/sympy/tensor/array/arrayop.py
3487${PYSITELIB}/sympy/tensor/array/arrayop.pyc 3614${PYSITELIB}/sympy/tensor/array/arrayop.pyc
3488${PYSITELIB}/sympy/tensor/array/arrayop.pyo 3615${PYSITELIB}/sympy/tensor/array/arrayop.pyo
3489${PYSITELIB}/sympy/tensor/array/dense_ndim_array.py 3616${PYSITELIB}/sympy/tensor/array/dense_ndim_array.py
3490${PYSITELIB}/sympy/tensor/array/dense_ndim_array.pyc 3617${PYSITELIB}/sympy/tensor/array/dense_ndim_array.pyc
3491${PYSITELIB}/sympy/tensor/array/dense_ndim_array.pyo 3618${PYSITELIB}/sympy/tensor/array/dense_ndim_array.pyo
3492${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.py 3619${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.py
3493${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.pyc 3620${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.pyc
3494${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.pyo 3621${PYSITELIB}/sympy/tensor/array/mutable_ndim_array.pyo
3495${PYSITELIB}/sympy/tensor/array/ndim_array.py 3622${PYSITELIB}/sympy/tensor/array/ndim_array.py
3496${PYSITELIB}/sympy/tensor/array/ndim_array.pyc 3623${PYSITELIB}/sympy/tensor/array/ndim_array.pyc
3497${PYSITELIB}/sympy/tensor/array/ndim_array.pyo 3624${PYSITELIB}/sympy/tensor/array/ndim_array.pyo
3498${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.py 3625${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.py
3499${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.pyc 3626${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.pyc
3500${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.pyo 3627${PYSITELIB}/sympy/tensor/array/sparse_ndim_array.pyo
3501${PYSITELIB}/sympy/tensor/array/tests/__init__.py 3628${PYSITELIB}/sympy/tensor/array/tests/__init__.py
3502${PYSITELIB}/sympy/tensor/array/tests/__init__.pyc 3629${PYSITELIB}/sympy/tensor/array/tests/__init__.pyc
3503${PYSITELIB}/sympy/tensor/array/tests/__init__.pyo 3630${PYSITELIB}/sympy/tensor/array/tests/__init__.pyo
 3631${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.py
 3632${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.pyc
 3633${PYSITELIB}/sympy/tensor/array/tests/test_array_comprehension.pyo
3504${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.py 3634${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.py
3505${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyc 3635${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyc
3506${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyo 3636${PYSITELIB}/sympy/tensor/array/tests/test_arrayop.pyo
3507${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.py 3637${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.py
3508${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.pyc 3638${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.pyc
3509${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.pyo 3639${PYSITELIB}/sympy/tensor/array/tests/test_immutable_ndim_array.pyo
3510${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.py 3640${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.py
3511${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyc 3641${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyc
3512${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyo 3642${PYSITELIB}/sympy/tensor/array/tests/test_mutable_ndim_array.pyo
 3643${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.py
 3644${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.pyc
 3645${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array.pyo
3513${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.py 3646${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.py
3514${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyc 3647${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyc
3515${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyo 3648${PYSITELIB}/sympy/tensor/array/tests/test_ndim_array_conversions.pyo
3516${PYSITELIB}/sympy/tensor/functions.py 3649${PYSITELIB}/sympy/tensor/functions.py
3517${PYSITELIB}/sympy/tensor/functions.pyc 3650${PYSITELIB}/sympy/tensor/functions.pyc
3518${PYSITELIB}/sympy/tensor/functions.pyo 3651${PYSITELIB}/sympy/tensor/functions.pyo
3519${PYSITELIB}/sympy/tensor/index_methods.py 3652${PYSITELIB}/sympy/tensor/index_methods.py
3520${PYSITELIB}/sympy/tensor/index_methods.pyc 3653${PYSITELIB}/sympy/tensor/index_methods.pyc
3521${PYSITELIB}/sympy/tensor/index_methods.pyo 3654${PYSITELIB}/sympy/tensor/index_methods.pyo
3522${PYSITELIB}/sympy/tensor/indexed.py 3655${PYSITELIB}/sympy/tensor/indexed.py
3523${PYSITELIB}/sympy/tensor/indexed.pyc 3656${PYSITELIB}/sympy/tensor/indexed.pyc
3524${PYSITELIB}/sympy/tensor/indexed.pyo 3657${PYSITELIB}/sympy/tensor/indexed.pyo
3525${PYSITELIB}/sympy/tensor/tensor.py 3658${PYSITELIB}/sympy/tensor/tensor.py
@@ -3638,26 +3771,29 @@ ${PYSITELIB}/sympy/utilities/mathml/data @@ -3638,26 +3771,29 @@ ${PYSITELIB}/sympy/utilities/mathml/data
3638${PYSITELIB}/sympy/utilities/mathml/data/simple_mmlctop.xsl 3771${PYSITELIB}/sympy/utilities/mathml/data/simple_mmlctop.xsl
3639${PYSITELIB}/sympy/utilities/memoization.py 3772${PYSITELIB}/sympy/utilities/memoization.py
3640${PYSITELIB}/sympy/utilities/memoization.pyc 3773${PYSITELIB}/sympy/utilities/memoization.pyc
3641${PYSITELIB}/sympy/utilities/memoization.pyo 3774${PYSITELIB}/sympy/utilities/memoization.pyo
3642${PYSITELIB}/sympy/utilities/misc.py 3775${PYSITELIB}/sympy/utilities/misc.py
3643${PYSITELIB}/sympy/utilities/misc.pyc 3776${PYSITELIB}/sympy/utilities/misc.pyc
3644${PYSITELIB}/sympy/utilities/misc.pyo 3777${PYSITELIB}/sympy/utilities/misc.pyo
3645${PYSITELIB}/sympy/utilities/pkgdata.py 3778${PYSITELIB}/sympy/utilities/pkgdata.py
3646${PYSITELIB}/sympy/utilities/pkgdata.pyc 3779${PYSITELIB}/sympy/utilities/pkgdata.pyc
3647${PYSITELIB}/sympy/utilities/pkgdata.pyo 3780${PYSITELIB}/sympy/utilities/pkgdata.pyo
3648${PYSITELIB}/sympy/utilities/pytest.py 3781${PYSITELIB}/sympy/utilities/pytest.py
3649${PYSITELIB}/sympy/utilities/pytest.pyc 3782${PYSITELIB}/sympy/utilities/pytest.pyc
3650${PYSITELIB}/sympy/utilities/pytest.pyo 3783${PYSITELIB}/sympy/utilities/pytest.pyo
 3784${PYSITELIB}/sympy/utilities/quality_unicode.py
 3785${PYSITELIB}/sympy/utilities/quality_unicode.pyc
 3786${PYSITELIB}/sympy/utilities/quality_unicode.pyo
3651${PYSITELIB}/sympy/utilities/randtest.py 3787${PYSITELIB}/sympy/utilities/randtest.py
3652${PYSITELIB}/sympy/utilities/randtest.pyc 3788${PYSITELIB}/sympy/utilities/randtest.pyc
3653${PYSITELIB}/sympy/utilities/randtest.pyo 3789${PYSITELIB}/sympy/utilities/randtest.pyo
3654${PYSITELIB}/sympy/utilities/runtests.py 3790${PYSITELIB}/sympy/utilities/runtests.py
3655${PYSITELIB}/sympy/utilities/runtests.pyc 3791${PYSITELIB}/sympy/utilities/runtests.pyc
3656${PYSITELIB}/sympy/utilities/runtests.pyo 3792${PYSITELIB}/sympy/utilities/runtests.pyo
3657${PYSITELIB}/sympy/utilities/source.py 3793${PYSITELIB}/sympy/utilities/source.py
3658${PYSITELIB}/sympy/utilities/source.pyc 3794${PYSITELIB}/sympy/utilities/source.pyc
3659${PYSITELIB}/sympy/utilities/source.pyo 3795${PYSITELIB}/sympy/utilities/source.pyo
3660${PYSITELIB}/sympy/utilities/tests/__init__.py 3796${PYSITELIB}/sympy/utilities/tests/__init__.py
3661${PYSITELIB}/sympy/utilities/tests/__init__.pyc 3797${PYSITELIB}/sympy/utilities/tests/__init__.pyc
3662${PYSITELIB}/sympy/utilities/tests/__init__.pyo 3798${PYSITELIB}/sympy/utilities/tests/__init__.pyo
3663${PYSITELIB}/sympy/utilities/tests/diagnose_imports.py 3799${PYSITELIB}/sympy/utilities/tests/diagnose_imports.py

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

--- pkgsrc/math/py-sympy/distinfo 2020/01/15 19:13:06 1.14
+++ pkgsrc/math/py-sympy/distinfo 2020/01/24 16:20:24 1.15
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.14 2020/01/15 19:13:06 minskim Exp $ 1$NetBSD: distinfo,v 1.15 2020/01/24 16:20:24 minskim Exp $
2 2
3SHA1 (sympy-1.4.tar.gz) = 9485daf9e29f4ffa20e04111bea940a917eb3a69 3SHA1 (sympy-1.5.tar.gz) = be2e740860f7900f0ee2a8102d2943fded44125c
4RMD160 (sympy-1.4.tar.gz) = 4f67bb1afa1895cc7c991f9ba23c23fa699e22e3 4RMD160 (sympy-1.5.tar.gz) = 3d1b3efed8553d5d2aa84fbc40be4a895c3c617a
5SHA512 (sympy-1.4.tar.gz) = 6ae09be7260b1624b4f92d39c68d5cdf54e6e33010d9215f46d62d989c04cdbee6f9f9c8b11ebeda53257d154954fb926b3ab7335b738e33ad248764875b6ddb 5SHA512 (sympy-1.5.tar.gz) = 882ed99cbc7333cbed85d247d04a764a92855e3d26cee96163d18ece566115b9d38999bbe022225521834037dbdfc4c567548112dfddd5ece65af8f672a06091
6Size (sympy-1.4.tar.gz) = 6017715 bytes 6Size (sympy-1.5.tar.gz) = 6294079 bytes