Module pyinotify :: Class _Event
[hide private]
[frames] | no frames]

Class _Event

source code


Event structure, represent events raised by the system. This is the base class and should be subclassed.

Instance Methods [hide private]
 
__init__(self, dict_)
Attach attributes (contained in dict_) to self.
source code
str
__repr__(self)
Returns: Generic event string representation.
source code
 
__str__(self)
str(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, dict_)
(Constructor)

source code 

Attach attributes (contained in dict_) to self.

Parameters:
  • dict_ (dictionary) - Set of attributes.
Overrides: object.__init__

__repr__(self)
(Representation operator)

source code 

repr(x)

Returns: str
Generic event string representation.
Overrides: object.__repr__

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)