Skip to content

Commit

Permalink
readmes no longer have two INTERFACE sections
Browse files Browse the repository at this point in the history
  • Loading branch information
dkogan committed Oct 7, 2018
1 parent bc5e8fb commit ec7908c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion extract_README.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@ def write_orgized(s):
write_orgized(inspect.getdoc(mod))
write( '\n' )

write('* INTERFACE\n')
# extract the global function docstrings. I'm not sure why I'm doing
# that for the docstrings, but not for the class or methods. I guess the
# bulk of the documentation isn't there, but in the module docstring.
write('* GLOBAL FUNCTIONS\n')

for func in dirmod():
if re.match('_', func):
Expand Down

0 comments on commit ec7908c

Please sign in to comment.