small polishing
This commit is contained in:
parent
8d7fab56f7
commit
b2243ae3c1
|
@ -68,12 +68,13 @@ class ASCIItable():
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
# ------------------------------------------------------------------
|
||||||
def croak(self,
|
def croak(self,
|
||||||
what, newline = True):
|
what,
|
||||||
|
newline = True):
|
||||||
|
|
||||||
sys.stderr.write(('\n'.join(map(str,what)) if not hasattr(what, "strip")
|
sys.stderr.write(('\n'.join(map(str,what)) if not hasattr(what, "strip")
|
||||||
and hasattr(what, "__getitem__")
|
and hasattr(what, "__getitem__")
|
||||||
or hasattr(what, "__iter__") else str(what))
|
or hasattr(what, "__iter__") else str(what))
|
||||||
+('\n' if newline else '')),
|
+('\n' if newline else ''))
|
||||||
|
|
||||||
# ------------------------------------------------------------------
|
# ------------------------------------------------------------------
|
||||||
def report_name(self, scriptName, fileName):
|
def report_name(self, scriptName, fileName):
|
||||||
|
|
Loading…
Reference in New Issue