[sage-devel] Re: gen_rest_table_index does not work for classes with classmethod

2020-02-20 Thread Jan Legerský
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

[sage-devel] gen_rest_table_index does not work for classes with classmethod

2020-02-18 Thread Jan Legerský
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) ---