Should there be a ticket opened for this?
--
You received this message because you are subscribed to the Google Groups
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to sage-devel+unsubscr...@googlegroups.com.
To view this discussion on the w
In SageMath 9.0, I have got an AttributeError when generating a ReST table
of methods of a class with a classmethod using `gen_rest_table_index`:
sage: class foo(SageObject):
: @classmethod
: def bar(cls):
: pass
:
sage: gen_rest_table_index(foo)
---