about summary refs log tree commit diff stats
path: root/311decimal-int.subx
Commit message (Expand)AuthorAgeFilesLines
* 7127Kartik Agaram2020-10-271-0/+207
* 7011 - tile: keep garbage out of the stackKartik Agaram2020-10-121-1/+14
* 6809Kartik Agaram2020-09-191-0/+402
9-12-11 16:16:31 +0100 committer hut <hut@lavabit.com> 2009-12-11 16:16:31 +0100 add documentation of some builtin modules' href='/akspecs/ranger/commit/make_doc.py?h=v1.9.0b3&id=69e97c429fb0d9f25cf1f2dc7d19e42123b0bf72'>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/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.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))