From 9731bd3c5c1972f3669f139855f1a149e6108370 Mon Sep 17 00:00:00 2001 From: Yuta Date: Sun, 17 Apr 2011 20:59:42 +0900 Subject: [PATCH] readme --- PKG-INFO | 11 +++++++---- README.rst | 11 +++++++---- pythonbrew/commands/symlink.py | 2 +- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/PKG-INFO b/PKG-INFO index 043cb26..4765302 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -34,12 +34,13 @@ pythonbrew command [options] Install some pythons:: pythonbrew install 2.6.6 - pythonbrew install --force 2.5.5 + pythonbrew install --force 2.6.6 pythonbrew install --configure="CC=gcc_4.1" 2.6.6 pythonbrew install --no-setuptools 2.6.6 - pythonbrew install http://www.python.org/ftp/python/2.7/Python-2.7.tgz - pythonbrew install file:///path/to/Python-2.7.tgz - pythonbrew install /path/to/Python-2.7.tgz + pythonbrew install http://www.python.org/ftp/python/2.7/Python-2.6.6.tgz + pythonbrew install file:///path/to/Python-2.6.6.tgz + pythonbrew install /path/to/Python-2.6.6.tgz + pythonbrew install 2.5.5 2.6.6 Permanently use the specified python as default:: @@ -67,6 +68,7 @@ List the available install pythons:: Uninstall the specified python:: pythonbrew uninstall 2.6.6 + pythonbrew uninstall 2.5.5 2.6.6 Remove stale source folders and archives:: @@ -84,6 +86,7 @@ Create/Remove a symbolic link to python:: pythonbrew symlink # Create a symbolic link, like "py2.5.5" pythonbrew symlink -p 2.5.5 + pythonbrew symlink -b pip # Create a symbolic link to the specified script in bin directory pythonbrew symlink -r # Remove a symbolic link Show version:: diff --git a/README.rst b/README.rst index 656cb74..b460033 100644 --- a/README.rst +++ b/README.rst @@ -33,12 +33,13 @@ pythonbrew command [options] Install some pythons:: pythonbrew install 2.6.6 - pythonbrew install --force 2.5.5 + pythonbrew install --force 2.6.6 pythonbrew install --configure="CC=gcc_4.1" 2.6.6 pythonbrew install --no-setuptools 2.6.6 - pythonbrew install http://www.python.org/ftp/python/2.7/Python-2.7.tgz - pythonbrew install file:///path/to/Python-2.7.tgz - pythonbrew install /path/to/Python-2.7.tgz + pythonbrew install http://www.python.org/ftp/python/2.7/Python-2.6.6.tgz + pythonbrew install file:///path/to/Python-2.6.6.tgz + pythonbrew install /path/to/Python-2.6.6.tgz + pythonbrew install 2.5.5 2.6.6 Permanently use the specified python as default:: @@ -66,6 +67,7 @@ List the available install pythons:: Uninstall the specified python:: pythonbrew uninstall 2.6.6 + pythonbrew uninstall 2.5.5 2.6.6 Remove stale source folders and archives:: @@ -83,6 +85,7 @@ Create/Remove a symbolic link to python:: pythonbrew symlink # Create a symbolic link, like "py2.5.5" pythonbrew symlink -p 2.5.5 + pythonbrew symlink -b pip # Create a symbolic link to the specified script in bin directory pythonbrew symlink -r # Remove a symbolic link Show version:: diff --git a/pythonbrew/commands/symlink.py b/pythonbrew/commands/symlink.py index 10fe9b1..8f24055 100644 --- a/pythonbrew/commands/symlink.py +++ b/pythonbrew/commands/symlink.py @@ -29,7 +29,7 @@ class SymlinkCommand(Command): dest="bin", action="append", default=[], - help="Create the specified binary symbolic link" + help="Create a symbolic link to the specified script in bin directory" ) def run_command(self, options, args):