diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-02-25 11:09:54 +0100 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2019-03-05 16:52:49 +0100 |
| commit | 02bbb30efea4980c9d133947cbbf69fb599071ad (patch) | |
| tree | 3fea6826fcc5354840a27cb1dc99ff31eef81896 /test/utils/cosmetics.py | |
| parent | eab809932871f91d6f4aa770fc321af9e156e0f5 (diff) | |
| download | miasm-02bbb30efea4980c9d133947cbbf69fb599071ad.tar.gz miasm-02bbb30efea4980c9d133947cbbf69fb599071ad.zip | |
Support python2/python3
Diffstat (limited to 'test/utils/cosmetics.py')
| -rw-r--r-- | test/utils/cosmetics.py | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/test/utils/cosmetics.py b/test/utils/cosmetics.py index e80e1f09..da7a6bc5 100644 --- a/test/utils/cosmetics.py +++ b/test/utils/cosmetics.py @@ -1,3 +1,4 @@ +from __future__ import print_function import os import platform @@ -33,23 +34,27 @@ def getTerminalSize(): WIDTH = getTerminalSize()[0] -colors = {"red": "\033[91;1m", - "end": "\033[0m", - "green": "\033[92;1m", - "lightcyan": "\033[96m", - "blue": "\033[94;1m"} +colors = { + "red": "\033[91;1m", + "end": "\033[0m", + "green": "\033[92;1m", + "lightcyan": "\033[96m", + "blue": "\033[94;1m" +} if is_win: - colors = {"red": "", - "end": "", - "green": "", - "lightcyan": "", - "blue": ""} + colors = { + "red": "", + "end": "", + "green": "", + "lightcyan": "", + "blue": "" + } def write_colored(text, color, already_printed=0): text_colored = colors[color] + text + colors["end"] - print " " * (WIDTH - already_printed - len(text)) + text_colored + print(" " * (WIDTH - already_printed - len(text)) + text_colored) def write_underline(text): - print "\033[4m" + text + colors["end"] + print("\033[4m" + text + colors["end"]) |