aboutsummaryrefslogtreecommitdiffstats
path: root/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test.py')
-rw-r--r--test.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/test.py b/test.py
deleted file mode 100644
index 2c43bab..0000000
--- a/test.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import hexdump
-
-import vt100
-
-vt = vt100.vt100(24, 80)
-string = b"foo\033[31m\033[32mb\033[3;7;42ma\033[23mr"
-vt.process(string)
-
-hexdump.hexdump(vt.get_string_plaintext(0, 0, 0, 50))
-hexdump.hexdump(vt.get_string_formatted(0, 0, 0, 50))
-print(vt.cell(0, 4).contents())