[Python-Dev] Problem with pydoc script in PEP 405 venvs
Oleg Broytman
phd at phdru.name
Mon Jun 17 21:15:12 CEST 2013
More information about the Python-Dev mailing list
Mon Jun 17 21:15:12 CEST 2013
- Previous message: [Python-Dev] Problem with pydoc script in PEP 405 venvs
- Next message: [Python-Dev] Problem with pydoc script in PEP 405 venvs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Mon, Jun 17, 2013 at 06:37:49PM +0000, Vinay Sajip <vinay_sajip at yahoo.co.uk> wrote: > @echo off > __VENV_PYTHON__ -c "import sys, pydoc; sys.exit(pydoc.cli())" I think you want to pass command line arguments: @echo off __VENV_PYTHON__ -c "import sys, pydoc; sys.exit(pydoc.cli())" %1 %2 %3 %4 %5 %6 %7 %8 %9 Oleg. -- Oleg Broytman http://phdru.name/ phd at phdru.name Programmers don't die, they just GOSUB without RETURN.
- Previous message: [Python-Dev] Problem with pydoc script in PEP 405 venvs
- Next message: [Python-Dev] Problem with pydoc script in PEP 405 venvs
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-Dev mailing list