Package coro :: Module _coro :: Class SimultaneousError
[hide private]
[frames] | no frames]

Class SimultaneousError

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              SimultaneousError

Two threads attempted a conflicting blocking operation (e.g., read() on the same descriptor).
Instance Methods [hide private]
 
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature
 
__repr__(...)
repr(x)
 
__str__(...)
str(x)

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __setattr__, __setstate__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Instance Variables [hide private]
  co
: The coroutine that is trying to block on an event.
  event
: The event that it is trying to block on.
  other
: The coroutine or function that is already waiting on the event.
Properties [hide private]

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details [hide private]

__init__(...)
(Constructor)

 
x.__init__(...) initializes x; see help(type(x)) for signature
Overrides: object.__init__
(inherited documentation)

__repr__(...)
(Representation operator)

 
repr(x)
Overrides: object.__repr__
(inherited documentation)

__str__(...)
(Informal representation operator)

 
str(x)
Overrides: object.__str__
(inherited documentation)

Instance Variable Details [hide private]

event

: The event that it is trying to block on. For kqueue, this is normally a kevent_key object.