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/classpirate3_1_1Pirate.html | 348 ------------------------------- 1 file changed, 348 deletions(-) delete mode 100644 doxygen/html/classpirate3_1_1Pirate.html (limited to 'doxygen/html/classpirate3_1_1Pirate.html') diff --git a/doxygen/html/classpirate3_1_1Pirate.html b/doxygen/html/classpirate3_1_1Pirate.html deleted file mode 100644 index c929022..0000000 --- a/doxygen/html/classpirate3_1_1Pirate.html +++ /dev/null @@ -1,348 +0,0 @@ - - - - -Cmd2: pirate3::Pirate Class Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
pirate3::Pirate Class Reference
-
-
- -

Inherits Cmd.

- -

List of all members.

- - - - - - - - - - -

-Public Member Functions

def do_drink
def do_loot
def postcmd
def precmd

-Public Attributes

 initial_gold

-Static Public Attributes

int gold = 3
-

Detailed Description

-
-

Definition at line 4 of file pirate3.py.

-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - -
def pirate3::Pirate::do_drink ( self,
 arg 
)
-
-
- -

Definition at line 9 of file pirate3.py.

- -

References pirate2::Pirate::gold, and gold.

-
00009 
-00010     def do_drink(self, arg):
-00011         'Drown your sorrrows in rrrum.'        
-        self.gold -= 1
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - -
def pirate3::Pirate::do_loot ( self,
 arg 
)
-
-
- -

Definition at line 6 of file pirate3.py.

- -

References pirate2::Pirate::gold, and gold.

-
00006 
-00007     def do_loot(self, arg):
-00008         'Seize booty from a passing ship.'
-        self.gold += 1
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def pirate3::Pirate::postcmd ( self,
 stop,
 line 
)
-
-
- -

Definition at line 15 of file pirate3.py.

- -

References pirate2::Pirate::gold, gold, and initial_gold.

- -

Referenced by cmd2::Cmd::onecmd_plus_hooks().

-
00015 
-00016     def postcmd(self, stop, line):   
-00017         if self.gold != self.initial_gold:
-00018             print('Now we gots {0} doubloons'
-00019                   .format(self.gold))
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - -
def pirate3::Pirate::precmd ( self,
 line 
)
-
-
- -

Definition at line 12 of file pirate3.py.

- -

References pirate2::Pirate::gold, gold, and initial_gold.

- -

Referenced by cmd2::Cmd::onecmd_plus_hooks().

-
00012 
-00013     def precmd(self, line):
-00014         self.initial_gold = self.gold
-        return line
-
-
-
-

Member Data Documentation

- - - - -
The documentation for this class was generated from the following file:
    -
  • /Users/amrogers/Developer/Projects/cmd2/docs/pycon2010/pirate3.py
  • -
-
-
- - - - - -- cgit v1.2.1