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

Inherits Cmd.

- -

List of all members.

- - - - - - -

-Public Member Functions

def do_drink
def do_loot

-Static Public Attributes

int gold = 3
-

Detailed Description

-
-

Definition at line 4 of file pirate2.py.

-

Member Function Documentation

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

Definition at line 11 of file pirate2.py.

- -

References gold.

-
00011 
-00012     def do_drink(self, arg):
-00013         'Drown your sorrrows in rrrum.'
-00014         self.gold -= 1
-00015         print('Now we gots {0} doubloons'
-00016               .format(self.gold))
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - -
def pirate2::Pirate::do_loot ( self,
 arg 
)
-
-
- -

Definition at line 6 of file pirate2.py.

- -

References gold.

-
00006 
-00007     def do_loot(self, arg):
-00008         'Seize booty from a passing ship.'
-00009         self.gold += 1
-00010         print('Now we gots {0} doubloons'
-              .format(self.gold))
-
-
-
-

Member Data Documentation

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