Changeset 7844:080091e64b66


Ignore:
Timestamp:
12/20/07 17:08:01 (5 years ago)
Author:
Robert Miller <rlmillster@…>
Branch:
default
Message:

fixed doctest

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sage/misc/sageinspect.py

    r7843 r7844  
    5959    Python classes with no docstring, but an __init__ docstring: 
    6060        sage: class Foo: 
    61         ....:     def __init__(self): 
    62         ....:         'docstring' 
    63         ....:         pass 
    64         ....: 
     61        ...     def __init__(self): 
     62        ...         'docstring' 
     63        ...         pass 
     64        ... 
    6565        sage: sage_getdoc(Foo) 
    6666        'docstring' 
Note: See TracChangeset for help on using the changeset viewer.