summary refs log tree commit diff stats
path: root/README.md
blob: 4cbfdd20aaf0c2111e8233848bfa13e474b441d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python3
"""Generate pydoc documentation and move it to the doc directory.
THIS WILL DELETE ALL EXISTING HTML FILES IN THAT DIRECTORY, so don't
store important content there."""

import pydoc, os, sys
if __name__ == '__main__':
	docdir = 'doc/pydoc'
	os.chdir(sys.path[0])
	try: os
pan class="o">.listdir(docdir): if fname.endswith('.html'): os.remove(os.path.join(docdir, fname)) pydoc.writedocs('.') pydoc.writedoc('curses') pydoc.writedoc('curses.ascii') pydoc.writedoc('os') pydoc.writedoc('os.path') pydoc.writedoc('sys') for fname in os.listdir('.'): if fname.endswith('.html'): os.rename(fname, os.path.join(docdir, fname))