pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/math/py-sympy math/py-sympy: Update to 1.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/eca2301e45ed
branches: trunk
changeset: 419387:eca2301e45ed
user: minskim <minskim%pkgsrc.org@localhost>
date: Mon Dec 16 23:54:47 2019 +0000
description:
math/py-sympy: Update to 1.3
Backwards compatibility breaks and deprecations:
* Symbols no longer automatically convert to functions when called,
e.g., if f = Symbol('f'), f(t) is now a TypeError. To create a
function, use f = Function('f') or f = symbols('f', cls=Function).
* .integrate() has been renamed to .compute_expectation() in
sympy.stats in order to avoid confusion with the integrals module.
* classof() and a2idx() in sympy.matrices.matrices have been
deprecated in favor of the same functions in sympy.matrices.common.
* The source() function has been deprecated. Use inspect.getsource or
?? in IPython.
See the release notes for the full list of changes.
https://github.com/sympy/sympy/wiki/release-notes-for-1.3
diffstat:
math/py-sympy/Makefile | 4 +-
math/py-sympy/PLIST | 218 +++++++++++++++++++++++++++++++++++++++++++-----
math/py-sympy/distinfo | 10 +-
3 files changed, 199 insertions(+), 33 deletions(-)
diffs (truncated from 366 to 300 lines):
diff -r 3ac8f635a79c -r eca2301e45ed math/py-sympy/Makefile
--- a/math/py-sympy/Makefile Mon Dec 16 21:27:11 2019 +0000
+++ b/math/py-sympy/Makefile Mon Dec 16 23:54:47 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.20 2018/07/19 20:15:36 prlw1 Exp $
+# $NetBSD: Makefile,v 1.21 2019/12/16 23:54:47 minskim Exp $
-DISTNAME= sympy-1.2
+DISTNAME= sympy-1.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=s/sympy/}
diff -r 3ac8f635a79c -r eca2301e45ed math/py-sympy/PLIST
--- a/math/py-sympy/PLIST Mon Dec 16 21:27:11 2019 +0000
+++ b/math/py-sympy/PLIST Mon Dec 16 23:54:47 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2018/07/19 20:15:36 prlw1 Exp $
+@comment $NetBSD: PLIST,v 1.16 2019/12/16 23:54:47 minskim Exp $
bin/isympy${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@@ -22,6 +22,9 @@
${PYSITELIB}/sympy/algebras/quaternion.py
${PYSITELIB}/sympy/algebras/quaternion.pyc
${PYSITELIB}/sympy/algebras/quaternion.pyo
+${PYSITELIB}/sympy/algebras/tests/__init__.py
+${PYSITELIB}/sympy/algebras/tests/__init__.pyc
+${PYSITELIB}/sympy/algebras/tests/__init__.pyo
${PYSITELIB}/sympy/algebras/tests/test_quaternion.py
${PYSITELIB}/sympy/algebras/tests/test_quaternion.pyc
${PYSITELIB}/sympy/algebras/tests/test_quaternion.pyo
@@ -187,6 +190,9 @@
${PYSITELIB}/sympy/codegen/rewriting.py
${PYSITELIB}/sympy/codegen/rewriting.pyc
${PYSITELIB}/sympy/codegen/rewriting.pyo
+${PYSITELIB}/sympy/codegen/tests/__init__.py
+${PYSITELIB}/sympy/codegen/tests/__init__.pyc
+${PYSITELIB}/sympy/codegen/tests/__init__.pyo
${PYSITELIB}/sympy/codegen/tests/test_algorithms.py
${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyc
${PYSITELIB}/sympy/codegen/tests/test_algorithms.pyo
@@ -259,6 +265,9 @@
${PYSITELIB}/sympy/combinatorics/rewritingsystem.py
${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyc
${PYSITELIB}/sympy/combinatorics/rewritingsystem.pyo
+${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.py
+${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyc
+${PYSITELIB}/sympy/combinatorics/rewritingsystem_fsm.pyo
${PYSITELIB}/sympy/combinatorics/subsets.py
${PYSITELIB}/sympy/combinatorics/subsets.pyc
${PYSITELIB}/sympy/combinatorics/subsets.pyo
@@ -649,21 +658,21 @@
${PYSITELIB}/sympy/discrete/__init__.py
${PYSITELIB}/sympy/discrete/__init__.pyc
${PYSITELIB}/sympy/discrete/__init__.pyo
-${PYSITELIB}/sympy/discrete/convolution.py
-${PYSITELIB}/sympy/discrete/convolution.pyc
-${PYSITELIB}/sympy/discrete/convolution.pyo
-${PYSITELIB}/sympy/discrete/recurrence.py
-${PYSITELIB}/sympy/discrete/recurrence.pyc
-${PYSITELIB}/sympy/discrete/recurrence.pyo
+${PYSITELIB}/sympy/discrete/convolutions.py
+${PYSITELIB}/sympy/discrete/convolutions.pyc
+${PYSITELIB}/sympy/discrete/convolutions.pyo
+${PYSITELIB}/sympy/discrete/recurrences.py
+${PYSITELIB}/sympy/discrete/recurrences.pyc
+${PYSITELIB}/sympy/discrete/recurrences.pyo
${PYSITELIB}/sympy/discrete/tests/__init__.py
${PYSITELIB}/sympy/discrete/tests/__init__.pyc
${PYSITELIB}/sympy/discrete/tests/__init__.pyo
-${PYSITELIB}/sympy/discrete/tests/test_convolution.py
-${PYSITELIB}/sympy/discrete/tests/test_convolution.pyc
-${PYSITELIB}/sympy/discrete/tests/test_convolution.pyo
-${PYSITELIB}/sympy/discrete/tests/test_recurrence.py
-${PYSITELIB}/sympy/discrete/tests/test_recurrence.pyc
-${PYSITELIB}/sympy/discrete/tests/test_recurrence.pyo
+${PYSITELIB}/sympy/discrete/tests/test_convolutions.py
+${PYSITELIB}/sympy/discrete/tests/test_convolutions.pyc
+${PYSITELIB}/sympy/discrete/tests/test_convolutions.pyo
+${PYSITELIB}/sympy/discrete/tests/test_recurrences.py
+${PYSITELIB}/sympy/discrete/tests/test_recurrences.pyc
+${PYSITELIB}/sympy/discrete/tests/test_recurrences.pyo
${PYSITELIB}/sympy/discrete/tests/test_transforms.py
${PYSITELIB}/sympy/discrete/tests/test_transforms.pyc
${PYSITELIB}/sympy/discrete/tests/test_transforms.pyo
@@ -958,6 +967,9 @@
${PYSITELIB}/sympy/holonomic/recurrence.py
${PYSITELIB}/sympy/holonomic/recurrence.pyc
${PYSITELIB}/sympy/holonomic/recurrence.pyo
+${PYSITELIB}/sympy/holonomic/tests/__init__.py
+${PYSITELIB}/sympy/holonomic/tests/__init__.pyc
+${PYSITELIB}/sympy/holonomic/tests/__init__.pyo
${PYSITELIB}/sympy/holonomic/tests/test_holonomic.py
${PYSITELIB}/sympy/holonomic/tests/test_holonomic.pyc
${PYSITELIB}/sympy/holonomic/tests/test_holonomic.pyo
@@ -1015,9 +1027,18 @@
${PYSITELIB}/sympy/integrals/rubi/__init__.py
${PYSITELIB}/sympy/integrals/rubi/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/__init__.pyo
+${PYSITELIB}/sympy/integrals/rubi/constraints.py
+${PYSITELIB}/sympy/integrals/rubi/constraints.pyc
+${PYSITELIB}/sympy/integrals/rubi/constraints.pyo
${PYSITELIB}/sympy/integrals/rubi/parsetools/__init__.py
${PYSITELIB}/sympy/integrals/rubi/parsetools/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/parsetools/__init__.pyo
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_rules.py
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_rules.pyc
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_rules.pyo
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.py
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyc
+${PYSITELIB}/sympy/integrals/rubi/parsetools/generate_tests.pyo
${PYSITELIB}/sympy/integrals/rubi/parsetools/header.py.txt
${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.py
${PYSITELIB}/sympy/integrals/rubi/parsetools/parse.pyc
@@ -1031,6 +1052,54 @@
${PYSITELIB}/sympy/integrals/rubi/rubi.py
${PYSITELIB}/sympy/integrals/rubi/rubi.pyc
${PYSITELIB}/sympy/integrals/rubi/rubi.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/__init__.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/__init__.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_2.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_3.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_4.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_4.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_1_4.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_exponential.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_exponential.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_exponential.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_hyperbolic_sine.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_hyperbolic_sine.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_hyperbolic_sine.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_hyperbolic_sine.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_hyperbolic_sine.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_hyperbolic_sine.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_sine.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_sine.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_inverse_sine.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_logarithms.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_logarithms.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_logarithms.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_miscellaneous_algebra.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_miscellaneous_algebra.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_miscellaneous_algebra.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_secant.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_secant.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_secant.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_sine.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_special_functions.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_tangent.pyo
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.py
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyc
+${PYSITELIB}/sympy/integrals/rubi/rubi_tests/tests/test_trinomials.pyo
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.py
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/rules/__init__.pyo
@@ -1079,6 +1148,9 @@
${PYSITELIB}/sympy/integrals/rubi/rules/sine.py
${PYSITELIB}/sympy/integrals/rubi/rules/sine.pyc
${PYSITELIB}/sympy/integrals/rubi/rules/sine.pyo
+${PYSITELIB}/sympy/integrals/rubi/rules/special_functions.py
+${PYSITELIB}/sympy/integrals/rubi/rules/special_functions.pyc
+${PYSITELIB}/sympy/integrals/rubi/rules/special_functions.pyo
${PYSITELIB}/sympy/integrals/rubi/rules/tangent.py
${PYSITELIB}/sympy/integrals/rubi/rules/tangent.pyc
${PYSITELIB}/sympy/integrals/rubi/rules/tangent.pyo
@@ -1091,15 +1163,6 @@
${PYSITELIB}/sympy/integrals/rubi/tests/__init__.py
${PYSITELIB}/sympy/integrals/rubi/tests/__init__.pyc
${PYSITELIB}/sympy/integrals/rubi/tests/__init__.pyo
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_2.py
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_2.pyc
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_2.pyo
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_3.py
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_3.pyc
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_3.pyo
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_4.py
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_4.pyc
-${PYSITELIB}/sympy/integrals/rubi/tests/test_1_4.pyo
${PYSITELIB}/sympy/integrals/rubi/tests/test_rubi_integrate.py
${PYSITELIB}/sympy/integrals/rubi/tests/test_rubi_integrate.pyc
${PYSITELIB}/sympy/integrals/rubi/tests/test_rubi_integrate.pyo
@@ -1511,6 +1574,9 @@
${PYSITELIB}/sympy/multipledispatch/dispatcher.py
${PYSITELIB}/sympy/multipledispatch/dispatcher.pyc
${PYSITELIB}/sympy/multipledispatch/dispatcher.pyo
+${PYSITELIB}/sympy/multipledispatch/tests/__init__.py
+${PYSITELIB}/sympy/multipledispatch/tests/__init__.pyc
+${PYSITELIB}/sympy/multipledispatch/tests/__init__.pyo
${PYSITELIB}/sympy/multipledispatch/tests/test_conflict.py
${PYSITELIB}/sympy/multipledispatch/tests/test_conflict.pyc
${PYSITELIB}/sympy/multipledispatch/tests/test_conflict.pyo
@@ -1595,6 +1661,98 @@
${PYSITELIB}/sympy/parsing/ast_parser.py
${PYSITELIB}/sympy/parsing/ast_parser.pyc
${PYSITELIB}/sympy/parsing/ast_parser.pyo
+${PYSITELIB}/sympy/parsing/autolev/Autolev.g4
+${PYSITELIB}/sympy/parsing/autolev/__init__.py
+${PYSITELIB}/sympy/parsing/autolev/__init__.pyc
+${PYSITELIB}/sympy/parsing/autolev/__init__.pyo
+${PYSITELIB}/sympy/parsing/autolev/_antlr/__init__.py
+${PYSITELIB}/sympy/parsing/autolev/_antlr/__init__.pyc
+${PYSITELIB}/sympy/parsing/autolev/_antlr/__init__.pyo
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlexer.py
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlexer.pyc
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlexer.pyo
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.py
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyc
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevlistener.pyo
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.py
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyc
+${PYSITELIB}/sympy/parsing/autolev/_antlr/autolevparser.pyo
+${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.py
+${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyc
+${PYSITELIB}/sympy/parsing/autolev/_listener_autolev_antlr.pyo
+${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.py
+${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyc
+${PYSITELIB}/sympy/parsing/autolev/_parse_autolev_antlr.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/__init__.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/__init__.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/chaos_pendulum.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/double_pendulum.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/mass_spring_damper.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/pydy-example-repo/non_min_pendulum.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest1.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest1.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest1.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest1.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest10.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest10.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest10.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest10.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest11.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest11.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest11.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest11.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest12.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest12.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest12.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest12.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest2.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest2.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest2.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest2.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest3.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest3.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest3.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest3.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest4.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest4.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest4.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest4.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest5.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest5.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest5.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest5.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest6.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest7.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyc
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest8.pyo
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.al
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.py
+${PYSITELIB}/sympy/parsing/autolev/test-examples/ruletest9.pyc
Home |
Main Index |
Thread Index |
Old Index