summary refs log tree commit diff stats
path: root/commands
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-04-05 20:11:31 -0400
committerDrew DeVault <sir@cmpwn.com>2019-04-05 20:11:31 -0400
commit4bc8ea34bcfb697394b11996945e02ea0c4f6199 (patch)
treee736244dfd5e13072d26ef08e445d8fb79827d0d /commands
parent399d014bff391009aa6f7bb52000e80558db5d4c (diff)
downloadaerc-4bc8ea34bcfb697394b11996945e02ea0c4f6199.tar.gz
Clear damage on each terminal.Draw call
Diffstat (limited to 'commands')
0 files changed, 0 insertions, 0 deletions
pre>
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))