[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread John H Palmieri
On Tuesday, May 26, 2015 at 4:41:01 PM UTC-7, David Perkinson wrote: Success! Doctesting 1 file. sage -t src/sage/sandpiles/sandpile.py [871 tests, 29.75 s] -- All tests passed!

[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread John H Palmieri
This message apparently means Doctest contains explicit source line number. Can you provide an example of a doctest you changed when adding the deprecation warnings? John On Tuesday, May 26, 2015 at 4:11:36 PM UTC-7, David Perkinson wrote: Could someone help me with the following error

[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread David Perkinson
One more thing: I also replaced each instance of doctest:858: with doctest: On Tuesday, May 26, 2015 at 4:31:54 PM UTC-7, David Perkinson wrote: EXAMPLES:: sage: S = sandpiles.Complete(4) sage: D = SandpileDivisor(S, {0: 0, 1: 0, 2: 8, 3: 0}) sage: E =

[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread John H Palmieri
On Tuesday, May 26, 2015 at 4:31:54 PM UTC-7, David Perkinson wrote: EXAMPLES:: sage: S = sandpiles.Complete(4) sage: D = SandpileDivisor(S, {0: 0, 1: 0, 2: 8, 3: 0}) sage: E = SandpileDivisor(S, {0: 2, 1: 2, 2: 2, 3: 2}) sage: v = firing_vector(S, D, E)

[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread David Perkinson
Success! Doctesting 1 file. sage -t src/sage/sandpiles/sandpile.py [871 tests, 29.75 s] -- All tests passed! -- Total time for all tests: 30.2 seconds

[sage-devel] Re: trouble with error message during doctest

2015-05-26 Thread David Perkinson
EXAMPLES:: sage: S = sandpiles.Complete(4) sage: D = SandpileDivisor(S, {0: 0, 1: 0, 2: 8, 3: 0}) sage: E = SandpileDivisor(S, {0: 2, 1: 2, 2: 2, 3: 2}) sage: v = firing_vector(S, D, E) doctest:...: DeprecationWarning: firing_vector() will soon be removed.