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_1Borg.html | 218 ------------------------------------ 1 file changed, 218 deletions(-) delete mode 100644 doxygen/html/classcmd2_1_1Borg.html (limited to 'doxygen/html/classcmd2_1_1Borg.html') diff --git a/doxygen/html/classcmd2_1_1Borg.html b/doxygen/html/classcmd2_1_1Borg.html deleted file mode 100644 index fe9f27b..0000000 --- a/doxygen/html/classcmd2_1_1Borg.html +++ /dev/null @@ -1,218 +0,0 @@ - - - - -Cmd2: cmd2::Borg Class Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
cmd2::Borg Class Reference
-
-
-
-Inheritance diagram for cmd2::Borg:
-
-
- - -cmd2::OutputTrap - -
- -

List of all members.

- - - - - -

-Public Member Functions

def __new__

-Static Private Attributes

dictionary _shared_state = {}
-

Detailed Description

-
All instances of any Borg subclass will share state.
-from Python Cookbook, 2nd Ed., recipe 6.16
-

Definition at line 1450 of file cmd2.py.

-

Member Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def cmd2::Borg::__new__ ( cls,
 a,
 k 
)
-
-
- -

Definition at line 1454 of file cmd2.py.

-
01454 
-01455     def __new__(cls, *a, **k):
-01456         obj = object.__new__(cls, *a, **k)
-01457         obj.__dict__ = cls._shared_state
-        return obj
-
-
-
-

Member Data Documentation

- -
-
- - - - -
dictionary cmd2::Borg::_shared_state = {} [static, private]
-
-
- -

Definition at line 1453 of file cmd2.py.

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