Hello,
Got troubles (after make distclean; make; make ptestlong) on
sage/structure/coerce.pyx. See the attached log.
Vincent
On 12/04/15 11:03, Volker Braun wrote:
This fixes the last two blockers, if nobody finds any new ones this will be
identical to 6.6. Please give it a spin and report back!
As usual, get the "develop" branch or the source tarball
from http://boxen.math.washington.edu/home/sagemath/sage-mirror/devel/index.html
c0f3e47 Updated Sage version to 6.6.rc3
e82c6c1 Trac #17979: Reimplementation of IntegerListsLex
31ebb1c Trac #18131: Revert sagenb installation back to easy_install +
update pip to 6.1.1
b19fad7 Trac #18087: Remove sig_on() from __dealloc__
309133f Trac #18139: Restore latte_int checksums.ini
299ac2e Trac #18079: Update openssl to 1.0.2a
819000f Updated Sage version to 6.6.rc2
--
You received this message because you are subscribed to the Google Groups
"sage-release" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.
Running doctests with ID 2015-04-12-22-13-05-0261182a.
Doctesting 1 file.
sage -t --long src/sage/structure/coerce.pyx
**********************************************************************
File "src/sage/structure/coerce.pyx", line 117, in sage.structure.coerce.py_scalar_parent
Failed example:
py_scalar_parent(bool)
Expected:
Integer Ring
Got:
<BLANKLINE>
**********************************************************************
File "src/sage/structure/coerce.pyx", line 143, in sage.structure.coerce.py_scalar_to_element
Failed example:
from sage.structure.coerce import py_scalar_to_element
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[0]>", line 1, in <module>
from sage.structure.coerce import py_scalar_to_element
ImportError: cannot import name py_scalar_to_element
**********************************************************************
File "src/sage/structure/coerce.pyx", line 144, in sage.structure.coerce.py_scalar_to_element
Failed example:
x = py_scalar_to_element(42)
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[1]>", line 1, in <module>
x = py_scalar_to_element(Integer(42))
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 145, in sage.structure.coerce.py_scalar_to_element
Failed example:
x, parent(x)
Expected:
(42, Integer Ring)
Got:
(x, Symbolic Ring)
**********************************************************************
File "src/sage/structure/coerce.pyx", line 147, in sage.structure.coerce.py_scalar_to_element
Failed example:
x = py_scalar_to_element(int(42))
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[3]>", line 1, in <module>
x = py_scalar_to_element(int(Integer(42)))
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 148, in sage.structure.coerce.py_scalar_to_element
Failed example:
x, parent(x)
Expected:
(42, Integer Ring)
Got:
(x, Symbolic Ring)
**********************************************************************
File "src/sage/structure/coerce.pyx", line 150, in sage.structure.coerce.py_scalar_to_element
Failed example:
x = py_scalar_to_element(long(42))
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[5]>", line 1, in <module>
x = py_scalar_to_element(long(Integer(42)))
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 151, in sage.structure.coerce.py_scalar_to_element
Failed example:
x, parent(x)
Expected:
(42, Integer Ring)
Got:
(x, Symbolic Ring)
**********************************************************************
File "src/sage/structure/coerce.pyx", line 153, in sage.structure.coerce.py_scalar_to_element
Failed example:
x = py_scalar_to_element(float(42))
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[7]>", line 1, in <module>
x = py_scalar_to_element(float(Integer(42)))
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 154, in sage.structure.coerce.py_scalar_to_element
Failed example:
x, parent(x)
Expected:
(42.0, Real Double Field)
Got:
(x, Symbolic Ring)
**********************************************************************
File "src/sage/structure/coerce.pyx", line 156, in sage.structure.coerce.py_scalar_to_element
Failed example:
x = py_scalar_to_element(complex(42))
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[9]>", line 1, in <module>
x = py_scalar_to_element(complex(Integer(42)))
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 157, in sage.structure.coerce.py_scalar_to_element
Failed example:
x, parent(x)
Expected:
(42.0, Complex Double Field)
Got:
(x, Symbolic Ring)
**********************************************************************
File "src/sage/structure/coerce.pyx", line 159, in sage.structure.coerce.py_scalar_to_element
Failed example:
py_scalar_to_element('hello')
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[11]>", line 1, in <module>
py_scalar_to_element('hello')
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 164, in sage.structure.coerce.py_scalar_to_element
Failed example:
py_scalar_to_element(False), py_scalar_to_element(True)
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[12]>", line 1, in <module>
py_scalar_to_element(False), py_scalar_to_element(True)
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 171, in sage.structure.coerce.py_scalar_to_element
Failed example:
for x in elt:
assert py_scalar_parent(type(x)) == py_scalar_to_element(x).parent()
Exception raised:
Traceback (most recent call last):
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 480, in _run
self.execute(example, compiled, test.globs)
File "/usr/lib/sagemath/local/lib/python2.7/site-packages/sage/doctest/forker.py", line 839, in execute
exec compiled in globs
File "<doctest sage.structure.coerce.py_scalar_to_element[15]>", line 2, in <module>
assert py_scalar_parent(type(x)) == py_scalar_to_element(x).parent()
NameError: name 'py_scalar_to_element' is not defined
**********************************************************************
File "src/sage/structure/coerce.pyx", line 339, in sage.structure.coerce.CoercionModel_cache_maps.record_exceptions
Failed example:
cm.exception_stack()
Expected:
['Traceback (most recent call last):\n File "sage/structure/coerce.pyx", line ...TypeError: just a test']
Got:
['Traceback (most recent call last):\n File "coerce.pyx", line 335, in sage.structure.coerce.CoercionModel_cache_maps._test_exception_stack (sage/structure/coerce.c:4764)\nTypeError: just a test']
**********************************************************************
File "src/sage/structure/coerce.pyx", line 367, in sage.structure.coerce.CoercionModel_cache_maps._record_exception
Failed example:
cm.exception_stack()
Expected:
['Traceback (most recent call last):\n File "sage/structure/coerce.pyx", line ...TypeError: just a test']
Got:
['Traceback (most recent call last):\n File "coerce.pyx", line 335, in sage.structure.coerce.CoercionModel_cache_maps._test_exception_stack (sage/structure/coerce.c:4764)\nTypeError: just a test']
**********************************************************************
File "src/sage/structure/coerce.pyx", line 397, in sage.structure.coerce.CoercionModel_cache_maps._test_exception_stack
Failed example:
cm.exception_stack()
Expected:
['Traceback (most recent call last):\n File "sage/structure/coerce.pyx", line ...TypeError: just a test']
Got:
['Traceback (most recent call last):\n File "coerce.pyx", line 335, in sage.structure.coerce.CoercionModel_cache_maps._test_exception_stack (sage/structure/coerce.c:4764)\nTypeError: just a test']
**********************************************************************
File "src/sage/structure/coerce.pyx", line 1452, in sage.structure.coerce.CoercionModel_cache_maps.discover_action
Failed example:
cm.discover_action(GF(5)['x'], ZZ, operator.div)
Expected:
Right inverse action by Finite Field of size 5 on Univariate Polynomial Ring in x over Finite Field of size 5
with precomposition on right by Natural morphism:
From: Integer Ring
To: Finite Field of size 5
Got:
<BLANKLINE>
**********************************************************************
File "src/sage/structure/coerce.pyx", line 1457, in sage.structure.coerce.CoercionModel_cache_maps.discover_action
Failed example:
cm.bin_op(GF(5)['x'].gen(), 7, operator.div).parent()
Expected:
Univariate Polynomial Ring in x over Finite Field of size 5
Got:
Fraction Field of Univariate Polynomial Ring in x over Finite Field of size 5
**********************************************************************
6 items had failures:
1 of 7 in sage.structure.coerce.CoercionModel_cache_maps._record_exception
1 of 7 in sage.structure.coerce.CoercionModel_cache_maps._test_exception_stack
2 of 11 in sage.structure.coerce.CoercionModel_cache_maps.discover_action
1 of 8 in sage.structure.coerce.CoercionModel_cache_maps.record_exceptions
1 of 8 in sage.structure.coerce.py_scalar_parent
14 of 17 in sage.structure.coerce.py_scalar_to_element
[214 tests, 20 failures, 0.49 s]
----------------------------------------------------------------------
sage -t --long src/sage/structure/coerce.pyx # 20 doctests failed
----------------------------------------------------------------------
Total time for all tests: 0.6 seconds
cpu time: 0.4 seconds
cumulative wall time: 0.5 seconds