2010/3/4 Ondrej Certik <ond...@certik.cz>:
>> $ ./setup.py test
>> Traceback (most recent call last):
>>  File "./setup.py", line 33, in <module>
>>    import sympy
>>  File "/home/ondrej/repos/sympy/sympy/__init__.py", line 29, in <module>
>>    from concrete import *
>>  File "/home/ondrej/repos/sympy/sympy/concrete/__init__.py", line 2,
>> in <module>
>>    from summations import sum, Sum
>>  File "/home/ondrej/repos/sympy/sympy/concrete/summations.py", line
>> 4, in <module>
>>    from sympy.solvers import solve
>>  File "/home/ondrej/repos/sympy/sympy/solvers/__init__.py", line 6, in 
>> <module>
>>    from solvers import solve, solve_linear_system, solve_linear_system_LU, \
>>  File "/home/ondrej/repos/sympy/sympy/solvers/solvers.py", line 34, in 
>> <module>
>>    from sympy.polys.polyerrors import *
>> ImportError: No module named polyerrors
>
>
> Chris --- are you also getting this error?

This is what I get with the current 1766 branch:

______________ sympy/solvers/tests/test_ode.py:test_old_ode_tests ______________
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
346, in test_old_ode_tests
    areq(dsolve(eq2, f(x)), sol2)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
_______ sympy/solvers/tests/test_ode.py:test_1st_homogeneous_coeff_ode1 ________
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
636, in test_1st_homogeneous_coeff_ode1
    areq(dsolve(eq5, f(x), hint='1st_homogeneous_coeff_best'), sol5)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
_______ sympy/solvers/tests/test_ode.py:test_1st_homogeneous_coeff_ode3 ________
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
717, in test_1st_homogeneous_coeff_ode3
    areq(str(dsolve(eq, f(x),
hint='1st_homogeneous_coeff_subs_indep_div_dep')), solstr)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
__ sympy/solvers/tests/test_ode.py:test_nth_linear_constant_coeff_homogeneous __
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
842, in test_nth_linear_constant_coeff_homogeneous
    arin(dsolve(eq1, f(x)), (sol1, sol1s))
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
 
sympy/solvers/tests/test_ode.py:test_nth_linear_constant_coeff_homogeneous_RootOf
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
907, in test_nth_linear_constant_coeff_homogeneous_RootOf
    ans = dum(dsolve(eq, f(x)), _m)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
 
sympy/solvers/tests/test_ode.py:test_nth_linear_constant_coeff_undetermined_coefficients
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
1069, in test_nth_linear_constant_coeff_undetermined_coefficients
    arin(dsolve(eq1, f(x), hint=hint), (sol1, sol1s))
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
 
sympy/solvers/tests/test_ode.py:test_nth_linear_constant_coeff_variation_of_parameters
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
1177, in test_nth_linear_constant_coeff_variation_of_parameters
    arin(dsolve(eq1, f(x), hint=hint), (sol1, sol1s))
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
 
sympy/solvers/tests/test_ode.py:test_nth_linear_constant_coeff_variation_of_parameters_simplify_False
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
1208, in test_nth_linear_constant_coeff_variation_of_parameters_simplify_False
    areq(dsolve(eq, f(x), hint + "_Integral", simplify=False),
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
______________ sympy/solvers/tests/test_ode.py:test_Liouville_ODE ______________
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
1261, in test_Liouville_ODE
    arin(dsolve(eq1, f(x)), (sol1, sol1s))
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'
________________________________________________________________________________
________ sympy/solvers/tests/test_ode.py:test_unexpanded_Liouville_ODE _________
  File "/home/one/src/sympy/sympy/solvers/tests/test_ode.py", line
1285, in test_unexpanded_Liouville_ODE
    arin(dsolve(eq2, f(x)), (sol2, sol2s))
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 375, in dsolve
    hints = classify_ode(eq, func, dict=True)
  File "/home/one/src/sympy/sympy/solvers/ode.py", line 599, in classify_ode
    r = deriv_coef.match(a*f(x)**c1)
AttributeError: 'NoneType' object has no attribute 'match'

________________________________________________________________________________
__________________ sympy/core/tests/test_basic.py:test_coeff ___________________
  File "/home/one/src/sympy/sympy/core/tests/test_basic.py", line 728,
in test_coeff
    assert (3*(1+x)*x**2).coeff(1+x) == 3*x**2
AssertionError
________________________________________________________________________________
_________________ sympy/core/tests/test_basic.py:test_coeff2_0 _________________
  File "/home/one/src/sympy/sympy/core/tests/test_basic.py", line 782,
in test_coeff2_0
    assert g.coeff(psi(r).diff(r, 2)) == 1
AssertionError
________________________________________________________________________________
_______________ sympy/geometry/tests/test_geometry.py:test_line ________________
  File "/home/one/src/sympy/sympy/geometry/tests/test_geometry.py",
line 120, in test_line
    assert Line.is_concurrent(l1, l3)
AssertionError
________________________________________________________________________________
______________ sympy/solvers/tests/test_solvers.py:test_tsolve_1 _______________
  File "/home/one/src/sympy/sympy/solvers/tests/test_solvers.py", line
266, in test_tsolve_1
    [log(y/2 + sqrt(-4 + y**2)/2), log(y/2 - sqrt(-4 + y**2)/2)])
AssertionError

 tests finished: 1744 passed, 4 failed, 2 skipped, 48 expected to fail,
2 expected to fail but passed, 10 exceptions, in 155.56 seconds
DO *NOT* COMMIT!

Vinzent

-- 
You received this message because you are subscribed to the Google Groups 
"sympy-patches" group.
To post to this group, send email to sympy-patc...@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-patches+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-patches?hl=en.

Reply via email to