Package zope :: Package proxy :: Class ProxyBase
[show private | hide private]
[frames | no frames]

Type ProxyBase

object --+
         |
        ProxyBase

Known Subclasses:
DeprecationProxy

Method Summary
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __abs__(x)
x.__abs__() <==> abs(x)
  __add__(x, y)
x.__add__(y) <==> x+y
  __and__(x, y)
x.__and__(y) <==> x&y
  __call__(x, ...)
x.__call__(...) <==> x(...)
  __cmp__(x, y)
x.__cmp__(y) <==> cmp(x,y)
  __coerce__(x, y)
x.__coerce__(y) <==> coerce(x, y)
  __contains__(x, y)
x.__contains__(y) <==> y in x
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __delitem__(x, y)
x.__delitem__(y) <==> del x[y]
  __delslice__(x, i, j)
Use of negative indices is not supported.
  __div__(x, y)
x.__div__(y) <==> x/y
  __divmod__(x, y)
x.__divmod__(y) <==> xdivmod(x, y)y
  __eq__(x, y)
x.__eq__(y) <==> x==y
  __float__(x)
x.__float__() <==> float(x)
  __floordiv__(x, y)
x.__floordiv__(y) <==> x//y
  __ge__(x, y)
x.__ge__(y) <==> x>=y
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __getitem__(x, y)
x.__getitem__(y) <==> x[y]
  __getslice__(x, i, j)
Use of negative indices is not supported.
  __gt__(x, y)
x.__gt__(y) <==> x>y
  __hash__(x)
x.__hash__() <==> hash(x)
  __hex__(x)
x.__hex__() <==> hex(x)
  __iadd__(x, y)
x.__iadd__(y) <==> x+y
  __iand__(x, y)
x.__iand__(y) <==> x&y
  __idiv__(x, y)
x.__idiv__(y) <==> x/y
  __ifloordiv__(x, y)
x.__ifloordiv__(y) <==> x//y
  __ilshift__(x, y)
x.__ilshift__(y) <==> x<<y
  __imod__(x, y)
x.__imod__(y) <==> x%y
  __imul__(x, y)
x.__imul__(y) <==> x*y
  __int__(x)
x.__int__() <==> int(x)
  __invert__(x)
x.__invert__() <==> ~x
  __ior__(x, y)
x.__ior__(y) <==> x|y
  __ipow__(x, y)
x.__ipow__(y) <==> x**y
  __irshift__(x, y)
x.__irshift__(y) <==> x>>y
  __isub__(x, y)
x.__isub__(y) <==> x-y
  __iter__(x)
x.__iter__() <==> iter(x)
  __itruediv__(x, y)
x.__itruediv__(y) <==> x/y
  __ixor__(x, y)
x.__ixor__(y) <==> x^y
  __le__(x, y)
x.__le__(y) <==> x<=y
  __len__(x)
x.__len__() <==> len(x)
  __long__(x)
x.__long__() <==> long(x)
  __lshift__(x, y)
x.__lshift__(y) <==> x<<y
  __lt__(x, y)
x.__lt__(y) <==> x<y
  __mod__(x, y)
x.__mod__(y) <==> x%y
  __mul__(x, y)
x.__mul__(y) <==> x*y
  __ne__(x, y)
x.__ne__(y) <==> x!=y
  __neg__(x)
x.__neg__() <==> -x
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __nonzero__(x)
x.__nonzero__() <==> x != 0
  __oct__(x)
x.__oct__() <==> oct(x)
  __or__(x, y)
x.__or__(y) <==> x|y
  __pos__(x)
x.__pos__() <==> +x
  __pow__(x, y, z)
x.__pow__(y[, z]) <==> pow(x, y[, z])
  __radd__(x, y)
x.__radd__(y) <==> y+x
  __rand__(x, y)
x.__rand__(y) <==> y&x
  __rdiv__(x, y)
x.__rdiv__(y) <==> y/x
  __rdivmod__(x, y)
x.__rdivmod__(y) <==> ydivmod(y, x)x
  __reduce__()
Raise an exception; this prevents proxies from being picklable by default, even if the underlying object is picklable.
  __repr__(x)
x.__repr__() <==> repr(x)
  __rfloordiv__(x, y)
x.__rfloordiv__(y) <==> y//x
  __rlshift__(x, y)
x.__rlshift__(y) <==> y<<x
  __rmod__(x, y)
x.__rmod__(y) <==> y%x
  __rmul__(x, y)
x.__rmul__(y) <==> y*x
  __ror__(x, y)
x.__ror__(y) <==> y|x
  __rpow__(y, x, z)
y.__rpow__(x[, z]) <==> pow(x, y[, z])
  __rrshift__(x, y)
x.__rrshift__(y) <==> y>>x
  __rshift__(x, y)
x.__rshift__(y) <==> x>>y
  __rsub__(x, y)
x.__rsub__(y) <==> y-x
  __rtruediv__(x, y)
x.__rtruediv__(y) <==> y/x
  __rxor__(x, y)
x.__rxor__(y) <==> y^x
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value
  __setitem__(x, i, y)
x.__setitem__(i, y) <==> x[i]=y
  __setslice__(x, i, j, y)
Use of negative indices is not supported.
  __str__(x)
x.__str__() <==> str(x)
  __sub__(x, y)
x.__sub__(y) <==> x-y
  __truediv__(x, y)
x.__truediv__(y) <==> x/y
  __xor__(x, y)
x.__xor__(y) <==> x^y
  next(x)
x.next() -> the next value, or raise StopIteration
    Inherited from object
  __reduce_ex__(...)
helper for pickle

Method Details

__init__(...)
(Constructor)

x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides:
__builtin__.object.__init__

__abs__(x)

x.__abs__() <==> abs(x)
Returns:
abs(x)

__add__(x, y)
(Addition operator)

x.__add__(y) <==> x+y
Returns:
x+y

__and__(x, y)
(And operator)

x.__and__(y) <==> x&y
Returns:
x&y

__call__(x, ...)
(Call operator)

x.__call__(...) <==> x(...)
Returns:
x(...)

__cmp__(x, y)
(Comparison operator)

x.__cmp__(y) <==> cmp(x,y)
Returns:
cmp(x,y)

__coerce__(x, y)

x.__coerce__(y) <==> coerce(x, y)
Returns:
coerce(x, y)

__contains__(x, y)
(In operator)

x.__contains__(y) <==> y in x
Returns:
y in x

__delattr__(...)

x.__delattr__('name') <==> del x.name
Overrides:
__builtin__.object.__delattr__

__delitem__(x, y)
(Index deletion operator)

x.__delitem__(y) <==> del x[y]
Returns:
del x[y]

__delslice__(x, i, j)
(Slice deletion operator)

Use of negative indices is not supported.
Returns:
del x[i:j]

__div__(x, y)

x.__div__(y) <==> x/y
Returns:
x/y

__divmod__(x, y)

x.__divmod__(y) <==> xdivmod(x, y)y
Returns:
xdivmod(x, y)y

__eq__(x, y)
(Equality operator)

x.__eq__(y) <==> x==y
Returns:
x==y

__float__(x)

x.__float__() <==> float(x)
Returns:
float(x)

__floordiv__(x, y)

x.__floordiv__(y) <==> x//y
Returns:
x//y

__ge__(x, y)
(Greater-than-or-equals operator)

x.__ge__(y) <==> x>=y
Returns:
x>=y

__getattribute__(...)

x.__getattribute__('name') <==> x.name
Overrides:
__builtin__.object.__getattribute__

__getitem__(x, y)
(Indexing operator)

x.__getitem__(y) <==> x[y]
Returns:
x[y]

__getslice__(x, i, j)
(Slicling operator)

Use of negative indices is not supported.
Returns:
x[i:j]

__gt__(x, y)
(Greater-than operator)

x.__gt__(y) <==> x>y
Returns:
x>y

__hash__(x)
(Hashing function)

x.__hash__() <==> hash(x)
Returns:
hash(x)
Overrides:
__builtin__.object.__hash__

__hex__(x)

x.__hex__() <==> hex(x)
Returns:
hex(x)

__iadd__(x, y)

x.__iadd__(y) <==> x+y
Returns:
x+y

__iand__(x, y)

x.__iand__(y) <==> x&y
Returns:
x&y

__idiv__(x, y)

x.__idiv__(y) <==> x/y
Returns:
x/y

__ifloordiv__(x, y)

x.__ifloordiv__(y) <==> x//y
Returns:
x//y

__ilshift__(x, y)

x.__ilshift__(y) <==> x<<y
Returns:
x<<y

__imod__(x, y)

x.__imod__(y) <==> x%y
Returns:
x%y

__imul__(x, y)

x.__imul__(y) <==> x*y
Returns:
x*y

__int__(x)

x.__int__() <==> int(x)
Returns:
int(x)

__invert__(x)

x.__invert__() <==> ~x
Returns:
~x

__ior__(x, y)

x.__ior__(y) <==> x|y
Returns:
x|y

__ipow__(x, y)

x.__ipow__(y) <==> x**y
Returns:
x**y

__irshift__(x, y)

x.__irshift__(y) <==> x>>y
Returns:
x>>y

__isub__(x, y)

x.__isub__(y) <==> x-y
Returns:
x-y

__iter__(x)

x.__iter__() <==> iter(x)
Returns:
iter(x)

__itruediv__(x, y)

x.__itruediv__(y) <==> x/y
Returns:
x/y

__ixor__(x, y)

x.__ixor__(y) <==> x^y
Returns:
x^y

__le__(x, y)
(Less-than-or-equals operator)

x.__le__(y) <==> x<=y
Returns:
x<=y

__len__(x)
(Length operator)

x.__len__() <==> len(x)
Returns:
len(x)

__long__(x)

x.__long__() <==> long(x)
Returns:
long(x)

__lshift__(x, y)

x.__lshift__(y) <==> x<<y
Returns:
x<<y

__lt__(x, y)
(Less-than operator)

x.__lt__(y) <==> x<y
Returns:
x<y

__mod__(x, y)

x.__mod__(y) <==> x%y
Returns:
x%y

__mul__(x, y)

x.__mul__(y) <==> x*y
Returns:
x*y

__ne__(x, y)

x.__ne__(y) <==> x!=y
Returns:
x!=y

__neg__(x)

x.__neg__() <==> -x
Returns:
-x

__new__(T, S, ...)

T.__new__(S, ...) -> a new object with type S, a subtype of T
Returns:
a new object with type S, a subtype of T
Overrides:
__builtin__.object.__new__

__nonzero__(x)
(Boolean test operator)

x.__nonzero__() <==> x != 0
Returns:
x != 0

__oct__(x)

x.__oct__() <==> oct(x)
Returns:
oct(x)

__or__(x, y)
(Or operator)

x.__or__(y) <==> x|y
Returns:
x|y

__pos__(x)

x.__pos__() <==> +x
Returns:
+x

__pow__(x, y, z=...)

x.__pow__(y[, z]) <==> pow(x, y[, z])
Returns:
pow(x, y[, z])

__radd__(x, y)
(Right-side addition operator)

x.__radd__(y) <==> y+x
Returns:
y+x

__rand__(x, y)

x.__rand__(y) <==> y&x
Returns:
y&x

__rdiv__(x, y)

x.__rdiv__(y) <==> y/x
Returns:
y/x

__rdivmod__(x, y)

x.__rdivmod__(y) <==> ydivmod(y, x)x
Returns:
ydivmod(y, x)x

__reduce__()

Raise an exception; this prevents proxies from being picklable by default, even if the underlying object is picklable.
Overrides:
__builtin__.object.__reduce__

__repr__(x)
(Representation operator)

x.__repr__() <==> repr(x)
Returns:
repr(x)
Overrides:
__builtin__.object.__repr__

__rfloordiv__(x, y)

x.__rfloordiv__(y) <==> y//x
Returns:
y//x

__rlshift__(x, y)

x.__rlshift__(y) <==> y<<x
Returns:
y<<x

__rmod__(x, y)

x.__rmod__(y) <==> y%x
Returns:
y%x

__rmul__(x, y)

x.__rmul__(y) <==> y*x
Returns:
y*x

__ror__(x, y)

x.__ror__(y) <==> y|x
Returns:
y|x

__rpow__(y, x, z=...)

y.__rpow__(x[, z]) <==> pow(x, y[, z])
Returns:
pow(x, y[, z])

__rrshift__(x, y)

x.__rrshift__(y) <==> y>>x
Returns:
y>>x

__rshift__(x, y)

x.__rshift__(y) <==> x>>y
Returns:
x>>y

__rsub__(x, y)

x.__rsub__(y) <==> y-x
Returns:
y-x

__rtruediv__(x, y)

x.__rtruediv__(y) <==> y/x
Returns:
y/x

__rxor__(x, y)

x.__rxor__(y) <==> y^x
Returns:
y^x

__setattr__(...)

x.__setattr__('name', value) <==> x.name = value
Overrides:
__builtin__.object.__setattr__

__setitem__(x, i, y)
(Index assignment operator)

x.__setitem__(i, y) <==> x[i]=y
Returns:
x[i]=y

__setslice__(x, i, j, y)
(Slice assignment operator)

Use of negative indices is not supported.
Returns:
x[i:j]=y

__str__(x)
(Informal representation operator)

x.__str__() <==> str(x)
Returns:
str(x)
Overrides:
__builtin__.object.__str__

__sub__(x, y)
(Subtraction operator)

x.__sub__(y) <==> x-y
Returns:
x-y

__truediv__(x, y)

x.__truediv__(y) <==> x/y
Returns:
x/y

__xor__(x, y)

x.__xor__(y) <==> x^y
Returns:
x^y

next(x)

x.next() -> the next value, or raise StopIteration
Returns:
the next value, or raise StopIteration

Generated by Epydoc 2.1 on Fri Jun 24 12:01:25 2005 http://epydoc.sf.net