-
-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bring three more plot3d files to 100% coverage #12491
Comments
This comment has been minimized.
This comment has been minimized.
comment:2
Just some notes...
|
comment:3
In addition, So I'm going to remove it. |
Based on 5.0.beta3 |
comment:4
Attachment: trac_12491.patch.gz It seems to pass all tests, and I looked at all the examples I added. Coverage is good. Needs review! |
Author: Karl-Dieter Crisman |
comment:5
Apply trac_12491.patch, trac_12491-review.patch (for the patchbot). This looks fine; I found no problems except a couple of minor typos and formatting fixes. Also I flagged some doctests with |
Reviewer: David Loeffler |
Attachment: trac_12491-review.patch.gz Apply over previous patch |
comment:6
Apply trac_12491.patch, trac_12491-review.patch (for the patchbot, which spotted a trailing whitespace character in my previous patch) |
comment:7
I guess I try to do the most minor stuff possible. I don't have time to look at this right now, but I'll try to do so soon. What's up with the indirect stuff? I assume this is for |
comment:8
Replying to @kcrisman:
Yes, exactly. The review patch looks good to me. By the way, is it an issue that the instances of the
But if I add a diff --git a/sage/plot/plot3d/plot3d.py b/sage/plot/plot3d/plot3d.py
--- a/sage/plot/plot3d/plot3d.py
+++ b/sage/plot/plot3d/plot3d.py
@@ -108,8 +108,9 @@ class _Coordinates(object):
sage: from sage.plot.plot3d.plot3d import _ArbitraryCoordinates as
sage: x,y,z=var('x,y,z')
- sage: arb((x+z,y*z,z), z, (x,y))
+ sage: c=arb((x+z,y*z,z), z, (x,y)); c
Arbitrary Coordinates coordinate transform (z in terms of x, y)
+ sage: TestSuite(c).run()
"""
import inspect
all_vars=inspect.getargspec(self.transform).args[1:] then I get this failure:
A doctest like |
comment:9
Thanks, John. Definitely another ticket - this pickling stuff is always tricky. |
Changed reviewer from David Loeffler to David Loeffler, John Palmieri |
Merged: sage-5.0.beta9 |
Base ticket: #12024 bringing docs to 90%.
Component: graphics
Author: Karl-Dieter Crisman
Reviewer: David Loeffler, John Palmieri
Merged: sage-5.0.beta9
Issue created by migration from https://trac.sagemath.org/ticket/12491
The text was updated successfully, but these errors were encountered: