Module __builtin__ :: Class bool
[show private | hide private]
[frames | no frames]

Type bool

object --+    
         |    
       int --+
             |
            bool


bool(x) -> bool

Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
Method Summary
  __and__(x, y)
x.__and__(y) <==> x&y
  __new__(T, S, ...)
T.__new__(S, ...) -> a new object with type S, a subtype of T
  __or__(x, y)
x.__or__(y) <==> x|y
  __rand__(x, y)
x.__rand__(y) <==> y&x
  __repr__(x)
x.__repr__() <==> repr(x)
  __ror__(x, y)
x.__ror__(y) <==> y|x
  __rxor__(x, y)
x.__rxor__(y) <==> y^x
  __str__(x)
x.__str__() <==> str(x)
  __xor__(x, y)
x.__xor__(y) <==> x^y
    Inherited from int
  __abs__(x)
x.__abs__() <==> abs(x)
  __add__(x, y)
x.__add__(y) <==> x+y
  __cmp__(x, y)
x.__cmp__(y) <==> cmp(x,y)
  __coerce__(x, y)
x.__coerce__(y) <==> coerce(x, y)
  __div__(x, y)
x.__div__(y) <==> x/y
  __divmod__(x, y)
x.__divmod__(y) <==> xdivmod(x, y)y
  __float__(x)
x.__float__() <==> float(x)
  __floordiv__(x, y)
x.__floordiv__(y) <==> x//y
  __getattribute__(...)
x.__getattribute__('name') <==> x.name
  __getnewargs__(...)
  __hash__(x)
x.__hash__() <==> hash(x)
  __hex__(x)
x.__hex__() <==> hex(x)
  __int__(x)
x.__int__() <==> int(x)
  __invert__(x)
x.__invert__() <==> ~x
  __long__(x)
x.__long__() <==> long(x)
  __lshift__(x, y)
x.__lshift__(y) <==> x<<y
  __mod__(x, y)
x.__mod__(y) <==> x%y
  __mul__(x, y)
x.__mul__(y) <==> x*y
  __neg__(x)
x.__neg__() <==> -x
  __nonzero__(x)
x.__nonzero__() <==> x != 0
  __oct__(x)
x.__oct__() <==> oct(x)
  __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
  __rdiv__(x, y)
x.__rdiv__(y) <==> y/x
  __rdivmod__(x, y)
x.__rdivmod__(y) <==> ydivmod(y, x)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
  __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
  __sub__(x, y)
x.__sub__(y) <==> x-y
  __truediv__(x, y)
x.__truediv__(y) <==> x/y
    Inherited from object
  __init__(...)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
  __delattr__(...)
x.__delattr__('name') <==> del x.name
  __reduce__(...)
helper for pickle
  __reduce_ex__(...)
helper for pickle
  __setattr__(...)
x.__setattr__('name', value) <==> x.name = value

Method Details

__and__(x, y)
(And operator)

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

__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__.int.__new__

__or__(x, y)
(Or operator)

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

__rand__(x, y)

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

__repr__(x)
(Representation operator)

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

__ror__(x, y)

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

__rxor__(x, y)

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

__str__(x)
(Informal representation operator)

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

__xor__(x, y)

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

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