epydoc CLI and many files

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Laszlo Zsolt Nagy

    epydoc CLI and many files

    Hello,

    I have a problem under Windows. I use the cli.py program included with
    epydoc. I wrote a small program that lists all of my modules after the
    cli. Something like this:

    cli.py --html --inheritance=gro uped module1.py module2.py module3.py
    .......

    The problem is that now I have so many modules that the shell (cmd.exe)
    cannot interpret this as a one command. It truncates the command line
    and gives me and error message. (cli.py does not start). Unfortunately,
    I cannot split the documentation into parts, because there are many
    crossreferences . How to overcome this problem?

    Les

  • Sybren Stuvel

    #2
    Re: epydoc CLI and many files

    Laszlo Zsolt Nagy enlightened us with:[color=blue]
    > I wrote a small program that lists all of my modules after the
    > cli. Something like this:
    >
    > cli.py --html --inheritance=gro uped module1.py module2.py module3.py
    > ......
    >
    > The problem is that now I have so many modules that the shell
    > (cmd.exe) cannot interpret this as a one command.[/color]

    Edit cli.py to get the list of modules from a call to glob.glob() or
    stdin, instead of the commandline.

    Sybren
    --
    The problem with the world is stupidity. Not saying there should be a
    capital punishment for stupidity, but why don't we just take the
    safety labels off of everything and let the problem solve itself?
    Frank Zappa

    Comment

    Working...