Removed remnants of pydoc-style documentation
This commit is contained in:
parent
11fd72c26f
commit
42e07afedc
2 changed files with 0 additions and 61 deletions
|
|
@ -1,37 +0,0 @@
|
|||
pydoc -w Cantera
|
||||
pydoc -w Cantera.Flow
|
||||
pydoc -w Cantera.FlowBoundary
|
||||
pydoc -w Cantera.FlowPlotter
|
||||
pydoc -w Cantera.Func
|
||||
pydoc -w Cantera.Interface
|
||||
pydoc -w Cantera.Kinetics
|
||||
pydoc -w Cantera.OneDim
|
||||
pydoc -w Cantera.Phase
|
||||
pydoc -w Cantera.Reactor
|
||||
pydoc -w Cantera.SurfWriter
|
||||
pydoc -w Cantera.SurfacePhase
|
||||
pydoc -w Cantera.Thermo
|
||||
pydoc -w Cantera.ThermoPhase
|
||||
pydoc -w Cantera.Transport
|
||||
pydoc -w Cantera.XML
|
||||
pydoc -w Cantera.__init__
|
||||
pydoc -w Cantera.boundaries1D
|
||||
pydoc -w Cantera.ck2ctml
|
||||
pydoc -w Cantera.constants
|
||||
pydoc -w Cantera.elements
|
||||
pydoc -w Cantera.excel
|
||||
pydoc -w Cantera.exceptions
|
||||
pydoc -w Cantera.flame
|
||||
pydoc -w Cantera.gases
|
||||
pydoc -w Cantera.importFromFile
|
||||
pydoc -w Cantera.interp
|
||||
pydoc -w Cantera.refine
|
||||
pydoc -w Cantera.rxnpath
|
||||
pydoc -w Cantera.schem
|
||||
pydoc -w Cantera.set
|
||||
pydoc -w Cantera.solids
|
||||
pydoc -w Cantera.solution
|
||||
pydoc -w Cantera.solve
|
||||
pydoc -w Cantera.stoich
|
||||
pydoc -w Cantera.tecplot
|
||||
pydoc -w Cantera.units
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
import os
|
||||
|
||||
def writepydoc(pkg, out):
|
||||
nm = pkg.__name__
|
||||
out.write('pydoc -w '+nm+'\n')
|
||||
p = pkg.__path__[0]
|
||||
files = os.listdir(p)
|
||||
for f in files:
|
||||
n = f.split('.')
|
||||
if len(n) >= 2 and n[-1] == 'py' and n[0][0] <> '_':
|
||||
try:
|
||||
exec('import '+nm+'.'+n[0])
|
||||
out.write('pydoc -w '+nm+'.'+n[0]+'\n')
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
out = open('mkdoc','w')
|
||||
import Cantera
|
||||
writepydoc(Cantera, out)
|
||||
import Cantera.OneD
|
||||
writepydoc(Cantera.OneD, out)
|
||||
|
||||
out.close()
|
||||
Loading…
Add table
Reference in a new issue