~ubuntu-branches/ubuntu/trusty/cmd2/trusty

« back to all changes in this revision

Viewing changes to cmd2.egg-info/PKG-INFO

  • Committer: Package Import Robot
  • Author(s): Federico Ceratto
  • Date: 2012-05-28 21:28:35 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120528212835-3jyfefsxyjzjdqco
Tags: 0.6.4-1
* New upstream release.
* Standards-Version bumped to 3.9.3, minor updates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Metadata-Version: 1.0
 
1
Metadata-Version: 1.1
2
2
Name: cmd2
3
 
Version: 0.6.3
 
3
Version: 0.6.4
4
4
Summary: Extra features for standard library's cmd module
5
5
Home-page: http://packages.python.org/cmd2/
6
6
Author: Catherine Devlin
10
10
        
11
11
        Drop-in replacement adds several features for command-prompt tools:
12
12
        
13
 
        * Searchable command history (commands: "hi", "li", "run")
14
 
        * Load commands from file, save to file, edit commands in file
15
 
        * Multi-line commands
16
 
        * Case-insensitive commands
17
 
        * Special-character shortcut commands (beyond cmd's "@" and "!")
18
 
        * Settable environment parameters
19
 
        * Parsing commands with flags
20
 
        * > (filename), >> (filename) redirect output to file
21
 
        * < (filename) gets input from file
22
 
        * bare >, >>, < redirect to/from paste buffer
23
 
        * accepts abbreviated commands when unambiguous
24
 
        * `py` enters interactive Python console
25
 
        * test apps against sample session transcript (see example/example.py)
 
13
            * Searchable command history (commands: "hi", "li", "run")
 
14
            * Load commands from file, save to file, edit commands in file
 
15
            * Multi-line commands
 
16
            * Case-insensitive commands
 
17
            * Special-character shortcut commands (beyond cmd's "@" and "!")
 
18
            * Settable environment parameters
 
19
            * Parsing commands with flags
 
20
            * > (filename), >> (filename) redirect output to file
 
21
            * < (filename) gets input from file
 
22
            * bare >, >>, < redirect to/from paste buffer
 
23
            * accepts abbreviated commands when unambiguous
 
24
            * `py` enters interactive Python console
 
25
            * test apps against sample session transcript (see example/example.py)
26
26
        
27
27
        Useable without modification anywhere cmd is used; simply import cmd2.Cmd in place of cmd.Cmd.
28
28
        
29
 
        Running `2to3 <http://docs.python.org/library/2to3.html>` against ``cmd2.py``
 
29
        Running `2to3 <http://docs.python.org/library/2to3.html>` against ``cmd2.py`` 
30
30
        generates working, Python3-based code.
31
31
        
32
32
        See docs at http://packages.python.org/cmd2/