Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/schemes/plane_curves/projective_curve.py

    r4487 r6544  
    284284          
    285285        EXAMPLE: 
    286             sage: x, y, z = MPolynomialRing(GF(2), 3, 'xyz').gens() 
     286            sage: R.<x,y,z> = GF(2)[] 
    287287            sage: f = x^3*y + y^3*z + x*z^3 
    288288            sage: C = Curve(f); pts = C.rational_points() 
     
    294294        function in Singular doesn't \emph{not} work correctly. 
    295295         
    296             sage: x, y, z = MPolynomialRing(GF(5), 3, 'xyz').gens() 
     296            sage: R.<x,y,z> = GF(5)[] 
    297297            sage: f = x^7 + y^7 + z^7 
    298298            sage: C = Curve(f); pts = C.rational_points() 
Note: See TracChangeset for help on using the changeset viewer.