Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
20697: documentation adjustment, and attempt to fix pickle issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Grayson Jorgenson committed Jun 2, 2016
1 parent 8541591 commit b918e77
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sage/schemes/curves/affine_curve.py
@@ -1,5 +1,5 @@
"""
Affine curves over fields.
Affine curves.
EXAMPLES:
Expand Down
2 changes: 1 addition & 1 deletion src/sage/schemes/curves/curve.py
@@ -1,5 +1,5 @@
"""
Generic plane curves.
Generic curves.
"""

from sage.misc.all import latex
Expand Down
7 changes: 6 additions & 1 deletion src/sage/schemes/curves/projective_curve.py
@@ -1,5 +1,5 @@
"""
Projective curves over fields.
Projective curves.
EXAMPLES:
Expand Down Expand Up @@ -804,3 +804,8 @@ def Hasse_bounds(q, genus=1):
else:
rq = (4*(genus**2)*q).isqrt()
return (q+1-rq,q+1+rq)

# Fix pickles from changing class names and plane_curves folder name
from sage.structure.sage_object import register_unpickle_override
register_unpickle_override('sage.schemes.plane_curves.projective_curve',
'ProjectiveCurve_generic', ProjectivePlaneCurve)

0 comments on commit b918e77

Please sign in to comment.