| Trees | Index | Help |  | 
|---|
| Package zope :: Package deprecation :: Module deprecation :: Class DeprecationProxy | 
 | 
object--+ |ProxyBase--+ | DeprecationProxy
| Method Summary | |
|---|---|
| __init__(self,
          module) | |
| __getattribute__(self,
          name) | |
| Deprecate the given names. | |
| Inherited from ProxyBase | |
| x.__abs__() <==> abs(x) | |
| x.__add__(y) <==> x+y | |
| x.__and__(y) <==> x&y | |
| x.__call__(...) <==> x(...) | |
| x.__cmp__(y) <==> cmp(x,y) | |
| x.__coerce__(y) <==> coerce(x, y) | |
| x.__contains__(y) <==> y in x | |
| x.__delattr__('name') <==> del x.name | |
| x.__delitem__(y) <==> del x[y] | |
| Use of negative indices is not supported. | |
| x.__div__(y) <==> x/y | |
| x.__divmod__(y) <==> xdivmod(x, y)y | |
| x.__eq__(y) <==> x==y | |
| x.__float__() <==> float(x) | |
| x.__floordiv__(y) <==> x//y | |
| x.__ge__(y) <==> x>=y | |
| x.__getitem__(y) <==> x[y] | |
| Use of negative indices is not supported. | |
| x.__gt__(y) <==> x>y | |
| x.__hash__() <==> hash(x) | |
| x.__hex__() <==> hex(x) | |
| x.__iadd__(y) <==> x+y | |
| x.__iand__(y) <==> x&y | |
| x.__idiv__(y) <==> x/y | |
| x.__ifloordiv__(y) <==> x//y | |
| x.__ilshift__(y) <==> x<<y | |
| x.__imod__(y) <==> x%y | |
| x.__imul__(y) <==> x*y | |
| x.__int__() <==> int(x) | |
| x.__invert__() <==> ~x | |
| x.__ior__(y) <==> x|y | |
| x.__ipow__(y) <==> x**y | |
| x.__irshift__(y) <==> x>>y | |
| x.__isub__(y) <==> x-y | |
| x.__iter__() <==> iter(x) | |
| x.__itruediv__(y) <==> x/y | |
| x.__ixor__(y) <==> x^y | |
| x.__le__(y) <==> x<=y | |
| x.__len__() <==> len(x) | |
| x.__long__() <==> long(x) | |
| x.__lshift__(y) <==> x<<y | |
| x.__lt__(y) <==> x<y | |
| x.__mod__(y) <==> x%y | |
| x.__mul__(y) <==> x*y | |
| x.__ne__(y) <==> x!=y | |
| x.__neg__() <==> -x | |
| T.__new__(S, ...) -> a new object with type S, a subtype of T | |
| x.__nonzero__() <==> x != 0 | |
| x.__oct__() <==> oct(x) | |
| x.__or__(y) <==> x|y | |
| x.__pos__() <==> +x | |
| x.__pow__(y[, z]) <==> pow(x, y[, z]) | |
| x.__radd__(y) <==> y+x | |
| x.__rand__(y) <==> y&x | |
| x.__rdiv__(y) <==> y/x | |
| x.__rdivmod__(y) <==> ydivmod(y, x)x | |
| Raise an exception; this prevents proxies from being picklable by default, even if the underlying object is picklable. | |
| x.__repr__() <==> repr(x) | |
| x.__rfloordiv__(y) <==> y//x | |
| x.__rlshift__(y) <==> y<<x | |
| x.__rmod__(y) <==> y%x | |
| x.__rmul__(y) <==> y*x | |
| x.__ror__(y) <==> y|x | |
| y.__rpow__(x[, z]) <==> pow(x, y[, z]) | |
| x.__rrshift__(y) <==> y>>x | |
| x.__rshift__(y) <==> x>>y | |
| x.__rsub__(y) <==> y-x | |
| x.__rtruediv__(y) <==> y/x | |
| x.__rxor__(y) <==> y^x | |
| x.__setattr__('name', value) <==> x.name = value | |
| x.__setitem__(i, y) <==> x[i]=y | |
| Use of negative indices is not supported. | |
| x.__str__() <==> str(x) | |
| x.__sub__(y) <==> x-y | |
| x.__truediv__(y) <==> x/y | |
| x.__xor__(y) <==> x^y | |
| x.next() -> the next value, or raise StopIteration | |
| Inherited from object | |
| helper for pickle | |
| Class Variable Summary | |
|---|---|
| tuple | __slots__=('_deprecated',)                              | 
| member_descriptor | _deprecated=<member '_deprecated' of 'DeprecationProxy... | 
| Method Details | 
|---|
| deprecate(self, names, message)Deprecate the given names. | 
| Class Variable Details | 
|---|
| __slots__
 | 
| _deprecated
 | 
| Trees | Index | Help |  | 
|---|
| Generated by Epydoc 2.1 on Fri Jun 24 12:01:21 2005 | http://epydoc.sf.net |