@@ -43,6 +43,15 @@ Outline
43
43
must not be overridden. Instead, the actual implementation should be in
44
44
*single underscore * methods, such as ``_add_ `` or ``_mul_ ``.
45
45
46
+ Exceptions are ``__lshift__ ``, ``__rshift__ ``, ``__invert__ ``,
47
+ where no default implementation is provided.
48
+
49
+ Also note that if the class is implemented in Cython, currently
50
+ SageMath uses a legacy behavior with ``c_api_binop_methods=True ``,
51
+ so the ``self `` argument may not have the correct type
52
+ in ``__lshift__ `` and ``__rshift__ ``. See
53
+ `Cython documentation <https://docs.cython.org/en/latest/src/userguide/special_methods.html#arithmetic-methods >`_.
54
+
46
55
- Turn your parent structure into an object of a category
47
56
48
57
Declare the category during initialisation\- --Your parent structure will
@@ -177,8 +186,8 @@ This basic implementation is formed by the following steps:
177
186
178
187
- Python uses double\- -underscore methods for arithmetic methods and string
179
188
representations. Sage's base classes often have a default implementation,
180
- and it is requested to **implement SINGLE underscore methods _repr_, and
181
- similarly _add_, _mul_ etc. **
189
+ and it is requested to **implement SINGLE underscore methods `` _repr_`` , and
190
+ similarly `` _add_``, `` _mul_`` etc. **
182
191
183
192
- You are encouraged to **make your parent "unique" **. That's to say, parents
184
193
should only evaluate equal if they are identical. Sage provides frameworks
@@ -261,7 +270,7 @@ considerations:
261
270
from those already present in Sage, we use a different string representation.
262
271
263
272
- Arithmetic is implemented in single\- -underscore method ``_add_ ``, ``_mul_ ``,
264
- etc. **We do not override the default double underscore __add__, __mul__ **,
273
+ etc. **We do not override the default double underscore `` __add__``, `` __mul__`` **,
265
274
since otherwise, we could not use Sage's coercion model.
266
275
267
276
- Comparisons can be implemented using ``_richcmp_ ``.
0 commit comments