Class t.t.r._AnsiColorizer(object):

Part of twisted.trial.reporter View Source View In Hierarchy

A colorizer is an object that loosely wraps around a stream, allowing callers to write text to the stream in a particular color.

Colorizer classes must implement supported() and write(text, color).

Method __init__ Undocumented
Class Method supported A class method that returns True if the current platform supports
Method write Write the given text to the stream in the given color.
def __init__(self, stream): (source)
Undocumented
@classmethod
def supported(cls, stream=sys.stdout): (source)
A class method that returns True if the current platform supports coloring terminal output using this method. Returns False otherwise.
def write(self, text, color): (source)
Write the given text to the stream in the given color.
ParameterstextText to be written to the stream.
colorA string label for a color. e.g. 'red', 'white'.
API Documentation for Twisted, generated by pydoctor at 2009-11-24 22:07:21.