From ef4ff756308759d6c251561c5018fd495e1f35bd Mon Sep 17 00:00:00 2001 From: utahta Date: Wed, 20 Jul 2011 00:08:01 +0900 Subject: [PATCH] update --- README.rst | 17 ++++++++++++++--- pythonbrew/commands/buildout.py | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 6ade579..faf463c 100644 --- a/README.rst +++ b/README.rst @@ -51,7 +51,7 @@ Use the specified python in current shell:: Runs a named python file against specified and/or all pythons:: pythonbrew py test.py - pythonbrew py -v test.py # Show running python version + pythonbrew py -v test.py # Show verbose output pythonbrew py -p 2.7.2 -p 3.2 test.py # Use the specified pythons List the installed pythons:: @@ -88,6 +88,11 @@ Create/Remove a symbolic link to python (in a directory on your $PATH):: pythonbrew symlink pip # Create a symbolic link to the specified script in bin directory pythonbrew symlink -r # Remove a symbolic link +Runs the buildout with specified or current using python:: + + pythonbrew buildout + pythonbrew buildout -p 2.6.6 + Show version:: pythonbrew version @@ -125,11 +130,17 @@ update off Disable pythonbrew. - + +symlink + Create/Remove a symbolic link to python (in a directory on your $PATH) + +buildout + Runs the buildout with specified or current using python. + version Show version. -See more details below:: +See more details below: pythonbrew help diff --git a/pythonbrew/commands/buildout.py b/pythonbrew/commands/buildout.py index 879db36..94cdfdd 100644 --- a/pythonbrew/commands/buildout.py +++ b/pythonbrew/commands/buildout.py @@ -10,7 +10,7 @@ from pythonbrew.downloader import Downloader class BuildoutCommand(Command): name = "buildout" usage = "%prog" - summary = "Runs the buildout against specified or currently use python" + summary = "Runs the buildout with specified or current using python" def __init__(self): super(BuildoutCommand, self).__init__()