Package pybaz :: Class Chatter
[frames] | no frames]

Class Chatter

source code

object --+
         |
        Chatter

Chatter lines in ``tla`` output.

:ivar text: chatter text without the ``"* "`` prefix.
:type text: str



Instance Methods
 
__init__(self, text)
Create a chatter item.
 
__str__(self)
tla-style chatter line with ``"* "`` prefix.

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Properties

Inherited from object: __class__

Method Details

__init__(self, text)
(Constructor)

 
Create a chatter item.

:param text: tla-style chatter line, starting with ``"* "``
:type text: str

Overrides: object.__init__

__str__(self)
(Informal representation operator)

 
tla-style chatter line with ``"* "`` prefix.

Overrides: object.__str__