about summary refs log tree commit diff stats
path: root/enumerate
Commit message (Expand)AuthorAgeFilesLines
* 2665Kartik K. Agaram2016-02-172-14/+5
* 2155 - `mu` can now load all files in a directoryKartik K. Agaram2015-09-051-1/+1
* 1439 - support clang in addition to gccKartik K. Agaram2015-05-231-1/+1
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-052-0/+40
d=f58626842bbb2bd3f8446044a44a67180b737f4e'>^
69e97c42 ^




c36d962d ^




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
26
27
28
                 





                                                                    
                            









                                                              




                                      




                                                                     
#!/usr/bin/python
"""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.mkdir(docdir)
	except: pass


	for fname in os.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))