Commit dbe56604 by fwkz

Passing valid arguments when calling print(). Poping 'verbose' from kwargs dict of print_*(),

parent 67357be3
......@@ -92,7 +92,7 @@ def __cprint(*args, **kwargs):
Signature like Python 3 print() function
print([object, ...][, sep=' '][, end='\n'][, file=sys.stdout])
"""
if not kwargs.get("verbose", True):
if not kwargs.pop("verbose", True):
return
with print_lock:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment