Skip to content

Commit

Permalink
ENH: add doccer to misc.__all__
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Mar 10, 2011
1 parent 9a3582c commit e6f0a1e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scipy/misc/__init__.py
@@ -1,7 +1,8 @@
from info import __doc__

__all__ = ['who', 'source', 'info']
__all__ = ['who', 'source', 'info', 'doccer']

import doccer
from common import *
from numpy import who, source, info as _info

Expand Down
4 changes: 4 additions & 0 deletions scipy/misc/doccer.py
Expand Up @@ -3,6 +3,10 @@

import sys

__all__ = ['docformat', 'indentcount_lines', 'filldoc',
'unindent_dict', 'unindent_string']


def docformat(docstring, docdict=None):
''' Fill a function docstring from variables in dictionary
Expand Down

0 comments on commit e6f0a1e

Please sign in to comment.