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/pirate2_8py_source.html | 146 ----------------------------------- 1 file changed, 146 deletions(-) delete mode 100644 doxygen/html/pirate2_8py_source.html (limited to 'doxygen/html/pirate2_8py_source.html') diff --git a/doxygen/html/pirate2_8py_source.html b/doxygen/html/pirate2_8py_source.html deleted file mode 100644 index 29bf0d1..0000000 --- a/doxygen/html/pirate2_8py_source.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - -Cmd2: /Users/amrogers/Developer/Projects/cmd2/docs/pycon2010/pirate2.py Source File - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
-
-
pirate2.py
-
-
-Go to the documentation of this file.
00001 from cmd import Cmd
-00002 # using ``do_`` methods
-00003 
-00004 class Pirate(Cmd):
-00005     gold = 3
-00006     def do_loot(self, arg):
-00007         'Seize booty from a passing ship.'
-00008         self.gold += 1
-00009         print('Now we gots {0} doubloons'
-00010               .format(self.gold))
-00011     def do_drink(self, arg):
-00012         'Drown your sorrrows in rrrum.'
-00013         self.gold -= 1
-00014         print('Now we gots {0} doubloons'
-00015               .format(self.gold))
-00016 
-00017 pirate = Pirate()
-00018 pirate.cmdloop()
-
-
- - - - - -- cgit v1.2.1