From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/classcmd2_1_1OptionParser.html | 278 ---------------------------- 1 file changed, 278 deletions(-) delete mode 100644 doxygen/html/classcmd2_1_1OptionParser.html (limited to 'doxygen/html/classcmd2_1_1OptionParser.html') diff --git a/doxygen/html/classcmd2_1_1OptionParser.html b/doxygen/html/classcmd2_1_1OptionParser.html deleted file mode 100644 index 548b736..0000000 --- a/doxygen/html/classcmd2_1_1OptionParser.html +++ /dev/null @@ -1,278 +0,0 @@ - - - - -Cmd2: cmd2::OptionParser Class Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
cmd2::OptionParser Class Reference
-
-
- -

List of all members.

- - - - - -

-Public Member Functions

def error
def exit
def print_help
-

Detailed Description

-
-

Definition at line 64 of file cmd2.py.

-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
def cmd2::OptionParser::error ( self,
 msg 
)
-
-
-
error(msg : string)
-
-Print a usage message incorporating 'msg' to stderr and exit.
-If you override this in a subclass, it should not return -- it
-should either exit or raise an exception.
-
-

Definition at line 77 of file cmd2.py.

-
00077 
-00078     def error(self, msg):
-00079         """error(msg : string)
-00080 
-00081         Print a usage message incorporating 'msg' to stderr and exit.
-00082         If you override this in a subclass, it should not return -- it
-00083         should either exit or raise an exception.
-00084         """
-00085         raise optparse.OptParseError(msg)
-        
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def cmd2::OptionParser::exit ( self,
 status = 0,
 msg = None 
)
-
-
- -

Definition at line 65 of file cmd2.py.

-
00065 
-00066     def exit(self, status=0, msg=None):
-00067         self.values._exit = True
-00068         if msg:
-00069             print (msg)
-            
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def cmd2::OptionParser::print_help ( self,
 args,
 kwargs 
)
-
-
- -

Definition at line 70 of file cmd2.py.

-
00070 
-00071     def print_help(self, *args, **kwargs):
-00072         try:
-00073             print (self._func.__doc__)
-00074         except AttributeError:
-00075             pass
-00076         optparse.OptionParser.print_help(self, *args, **kwargs)
-
-
-
-
-
The documentation for this class was generated from the following file:
    -
  • /Users/amrogers/Developer/Projects/cmd2/cmd2.py
  • -
-
-
- - - - - -- cgit v1.2.1