File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2317,7 +2317,8 @@ cdef class ElementWithCachedMethod(Element):
2317
2317
2318
2318
EXAMPLES::
2319
2319
2320
- sage: cython(''' # optional - sage.misc.cython
2320
+ sage: cython( # optional - sage.misc.cython
2321
+ ....: '''
2321
2322
....: from sage.structure.element cimport ElementWithCachedMethod
2322
2323
....: cdef class MyElement(ElementWithCachedMethod):
2323
2324
....: cdef public object x
@@ -4124,7 +4125,8 @@ cdef class EuclideanDomainElement(PrincipalIdealDomainElement):
4124
4125
4125
4126
EXAMPLES::
4126
4127
4127
- sage: cython(''' # optional - sage.misc.cython
4128
+ sage: cython( # optional - sage.misc.cython
4129
+ ....: '''
4128
4130
....: from sage.structure.element cimport EuclideanDomainElement
4129
4131
....: cdef class MyElt(EuclideanDomainElement):
4130
4132
....: def quo_rem(self, other):
@@ -4154,7 +4156,8 @@ cdef class EuclideanDomainElement(PrincipalIdealDomainElement):
4154
4156
4155
4157
::
4156
4158
4157
- sage: cython(''' # optional - sage.misc.cython
4159
+ sage: cython( # optional - sage.misc.cython
4160
+ ....: '''
4158
4161
....: from sage.structure.element cimport EuclideanDomainElement
4159
4162
....: cdef class MyElt(EuclideanDomainElement):
4160
4163
....: def quo_rem(self, other):
You can’t perform that action at this time.
0 commit comments