Package dbus :: Class UInt64
[hide private]
[frames] | no frames]

Class UInt64

source code

          object --+        
                   |        
                long --+    
                       |    
_dbus_bindings._LongBase --+
                           |
                          UInt64

An unsigned 64-bit integer between 0 and 0xFFFF FFFF FFFF FFFF, represented as a subtype of long.

This type only exists on platforms where the C compiler has suitable 64-bit types, such as C99 unsigned long long.

Constructor:

dbus.UInt64(value: long[, variant_level: int]) -> UInt64

value must be within the allowed range, or OverflowError will be raised.

variant_level must be non-negative; the default is 0.

Instance Methods [hide private]
a new object with type S, a subtype of T
__new__(T, S, ...) source code

Inherited from _dbus_bindings._LongBase: __delattr__, __getattribute__, __repr__, __setattr__

Inherited from long: __abs__, __add__, __and__, __cmp__, __coerce__, __div__, __divmod__, __float__, __floordiv__, __format__, __getnewargs__, __hash__, __hex__, __index__, __int__, __invert__, __long__, __lshift__, __mod__, __mul__, __neg__, __nonzero__, __oct__, __or__, __pos__, __pow__, __radd__, __rand__, __rdiv__, __rdivmod__, __rfloordiv__, __rlshift__, __rmod__, __rmul__, __ror__, __rpow__, __rrshift__, __rshift__, __rsub__, __rtruediv__, __rxor__, __sizeof__, __str__, __sub__, __truediv__, __trunc__, __xor__, bit_length, conjugate

Inherited from object: __init__, __reduce__, __reduce_ex__, __subclasshook__

Instance Variables [hide private]
int variant_level
Indicates how many nested Variant containers this object is contained in: if a message's wire format has a variant containing a variant containing a uint64, this is represented in Python by a UInt64 with variant_level==2.
Properties [hide private]

Inherited from long: denominator, imag, numerator, real

Inherited from object: __class__

Method Details [hide private]

__new__(T, S, ...)

source code 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__