Home | Trees | Indices | Help |
|
---|
|
This file is part of the web2py Web Framework Copyrighted by Massimo Di Pierro <mdipierro@cs.depaul.edu> License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html) Provides: - List; like list but returns None instead of IndexOutOfBounds - Storage; like dictionary allowing also for `obj.foo` for `obj['foo']`
|
|||
Storage A Storage object is like a dictionary except `obj.foo` can be used in addition to `obj['foo']`, and setting obj.foo = None deletes item foo. |
|||
StorageList like Storage but missing elements default to [] instead of None |
|||
Settings | |||
Messages | |||
FastStorage Eventually this should replace class Storage but causes memory leak because of http://bugs.python.org/issue1469629 |
|||
List Like a regular python list but a[i] if i is out of bounds return None instead of IndexOutOfBounds |
|
|||
|
|||
|
|||
|
|
|||
PICKABLE =
|
|||
__package__ =
|
|
PICKABLE
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sun Mar 16 02:36:11 2014 | http://epydoc.sourceforge.net |