Changeset 3166 for trunk/docs/find_undoc.py
- Timestamp:
- Nov 29, 2017 10:38:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/find_undoc.py
r2027 r3166 36 36 continue 37 37 else: 38 print fil+' undocumented'38 print(fil+' undocumented') 39 39 undoc.append(fil) 40 40 # generate code to place in a .rst file 41 41 if undoc: 42 print "\n# place this code somewhere in the .rst files\n#"42 print("\n# place this code somewhere in the .rst files\n#") 43 43 for fil in undoc: 44 print ".. automodule:: "+os.path.splitext(os.path.split(fil)[1])[0]45 print " :members: "46 print ""44 print(".. automodule:: "+os.path.splitext(os.path.split(fil)[1])[0]) 45 print(" :members: ") 46 print("")
Note: See TracChangeset
for help on using the changeset viewer.