コード例 #1
0
ファイル: contextualeval.py プロジェクト: clayodell/spellmell
def color(c, s):
    return ansi.set_foreground(c) + s + ansi.set_foreground(ansi.black)
コード例 #2
0
ファイル: contextualeval.py プロジェクト: darius/spellmell
def color(c, s):
    return ansi.set_foreground(c) + s + ansi.set_foreground(ansi.default_color)
コード例 #3
0
ファイル: ttypuzzle.py プロジェクト: taylor/sketchbook
def set_color((bg, fg)):
    sys.stdout.write(ansi.set_background(bg))
    sys.stdout.write(ansi.set_foreground(fg))