blindstation.utils
index
/home/sable/test/blindstation-1.0.7/blindstation-1.0.7/test/blindstation/utils.py

# -*- coding: UTF-8 -*-

 
Modules
       
blindstation
_xmlplus

 
Classes
       
exceptions.Exception
BSCError
BSError
BSSourceLimit
__builtin__.object
WeakMethod

 
class BSCError(exceptions.Exception)
    An exception that occured in the C code
 
  Methods defined here:
__init__(self, value)
__str__(self)

Methods inherited from exceptions.Exception:
__getitem__(...)

 
class BSError(exceptions.Exception)
    A standard exception from the platform
 
  Methods defined here:
__init__(self, value)
__str__(self)

Methods inherited from exceptions.Exception:
__getitem__(...)

 
class BSSourceLimit(exceptions.Exception)
    A standard exception from the platform
 
  Methods defined here:
__init__(self, value)
__str__(self)

Methods inherited from exceptions.Exception:
__getitem__(...)

 
class WeakMethod(__builtin__.object)
    Wraps a function or, more importantly, a bound method, in
a way that allows a bound method's object to be GC'd, while
providing the same interface as a normal weak reference.
 
  Methods defined here:
__call__(self)
__init__(self, fn)

Data and other attributes defined here:
__dict__ = <dictproxy object>
dictionary for instance variables (if defined)
__weakref__ = <attribute '__weakref__' of 'WeakMethod' objects>
list of weak references to the object (if defined)

 
Functions
       
getText(nodelist)
ref(...)
ref(object[, callback]) -- create a weak reference to 'object';
when 'object' is finalized, 'callback' will be called and passed
a reference to the weak reference object when 'object' is about
to be finalized.