95a96,104
> def get_termcap(use_colors = None):
> if use_colors:
> return termcap
> elif use_colors is None:
> # option unspecified; default behavior is to use colors iff isatty
> return tty_termcap
> else:
> return no_termcap
>