Vega strike Python Modules doc  0.5.1
Documentation of the " Modules " folder of Vega strike
 All Data Structures Namespaces Files Functions Variables
DbfilenameShelf Class Reference
Inheritance diagram for DbfilenameShelf:
Shelf

Public Member Functions

def __init__
 
- Public Member Functions inherited from Shelf
def __init__
 
def keys
 
def __len__
 
def has_key
 
def get
 
def __getitem__
 
def __setitem__
 
def __delitem__
 
def close
 
def __del__
 
def sync
 

Additional Inherited Members

- Data Fields inherited from Shelf
 dict
 

Detailed Description

Shelf implementation using the "anydbm" generic dbm interface.

This is initialized with the filename for the dbm database.
See the module's __doc__ string for an overview of the interface.

Definition at line 139 of file shelve.py.

Constructor & Destructor Documentation

def __init__ (   self,
  filename,
  flag = 'c' 
)

Definition at line 146 of file shelve.py.

References anydbm.open().

147  def __init__(self, filename, flag='c'):
148  import anydbm
149  Shelf.__init__(self, anydbm.open(filename, flag))
150 

The documentation for this class was generated from the following file: