2013-03-06 07:41:02 +01:00
|
|
|
#!/usr/bin/env python
|
2012-11-23 19:57:22 +01:00
|
|
|
|
2012-08-22 15:42:19 +02: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
|