changeset 1 | be27ed110b50 |
0:044383f39525 | 1:be27ed110b50 |
---|---|
1 #!C:\APPS\actpython\python.exe |
|
2 # |
|
3 # Call the command line interface for Epydoc. |
|
4 # |
|
5 |
|
6 # Make sure that we don't get confused between an epydoc.py script and |
|
7 # the real epydoc package. |
|
8 import sys, os.path |
|
9 if os.path.exists(os.path.join(sys.path[0], 'epydoc.py')): |
|
10 del sys.path[0] |
|
11 |
|
12 from epydoc.cli import cli |
|
13 cli() |
|
14 |