2013-03-06 01:41:02 -05:00
|
|
|
#!/usr/bin/env python
|
2012-11-23 22:57:22 +04:00
|
|
|
|
2012-08-22 16:42:19 +03:00
|
|
|
'''
|
|
|
|
Scans current directory for *.py files and reports
|
|
|
|
ones with missing __doc__ string.
|
|
|
|
'''
|
|
|
|
|
|
|
|
from glob import glob
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print '--- undocumented files:'
|
|
|
|
for fn in glob('*.py'):
|
|
|
|
loc = {}
|
|
|
|
execfile(fn, loc)
|
|
|
|
if '__doc__' not in loc:
|
|
|
|
print fn
|