[sage-devel] Re: Class docstring

2009-10-03 Thread Ethan Van Andel
*facepalm* Thank you, that fixes it. Ethan --~--~-~--~~~---~--~~ To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel-unsubscr...@googlegroups.com For more options, visit this group at htt

[sage-devel] Re: Class docstring

2009-10-03 Thread Minh Nguyen
Hi Ethan, On Sun, Oct 4, 2009 at 3:40 AM, Ethan Van Andel wrote: > > I've got a class that looks like this: > > > cdef class Riemann_Map: > code > """ lots of documentation """ What happens if you do this instead? cdef class Riemann_Map: """ Lots of documentation. """