summaryrefslogtreecommitdiff
path: root/subplot.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-23 16:38:17 +0300
committerLars Wirzenius <liw@liw.fi>2021-04-23 19:36:55 +0300
commitcefd43b0b26ea1975fb89dded45b69a6bbbe8d76 (patch)
tree87211415da0229c33cd6a4979722a35c831be88c /subplot.py
parentec9652a72aa8ff47fa64b8a1b5ba9afe84be4f7e (diff)
downloadsubplot-cefd43b0b26ea1975fb89dded45b69a6bbbe8d76.tar.gz
chore: clean up log files from generated Python programs
This is a step in the right direction, but may not be enough. We'll see. Multi-line log messages are no multiple lines in in the log file. All but the first one are indented. Dictionaries are listed with one key per line. argv as one item per line. Various log messages that are just noise removed.
Diffstat (limited to 'subplot.py')
-rw-r--r--subplot.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/subplot.py b/subplot.py
index 40678c2..4b9d5d8 100644
--- a/subplot.py
+++ b/subplot.py
@@ -103,7 +103,6 @@ def file_ends_in_zero_newlines(ctx, filename=None):
assert_ne = globals()["assert_ne"]
content = open(filename, "r").read()
- print("content:", repr(content))
assert_ne(content[-1], "\n")
@@ -112,7 +111,6 @@ def file_ends_in_one_newline(ctx, filename=None):
assert_ne = globals()["assert_ne"]
content = open(filename, "r").read()
- print("content:", repr(content))
assert_eq(content[-1], "\n")
assert_ne(content[-2], "\n")
@@ -121,7 +119,6 @@ def file_ends_in_two_newlines(ctx, filename=None):
assert_eq = globals()["assert_eq"]
content = open(filename, "r").read()
- print("content:", repr(content))
assert_eq(content[-2:], "\n\n")