changeset 30:786b3ea3e440

new version 0.3.1
author catherine@localhost
date Mon, 19 May 2008 09:57:23 -0400
parents c4bd5f1a6968
children dd64c0e3dbe0
files setup.py
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Mon May 19 09:35:13 2008 -0400
+++ b/setup.py	Mon May 19 09:57:23 2008 -0400
@@ -3,7 +3,7 @@
 
 setup(
     name="cmd2",
-    version="0.3.0",
+    version="0.3.1",
     py_modules = ['cmd2','flagReader','bootstrap'],
     
     # metadata for upload to PyPI
@@ -26,7 +26,9 @@
     * Special-character shortcut commands (beyond cmd's "@" and "!")
     * Settable environment parameters
     * Parsing commands with flags
-    * Redirection to file with >, >>; input from file with <
+    * > (filename), >> (filename) redirect output to file
+    * < (filename) gets input from file
+    * bare >, >>, < redirect to/from paste buffer     
 
 Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.