def puts(s='', newline=True, stream=sys.stdout.write): assert not IS_PY2 or (isinstance(s, unicode) or isinstance(s, colored.ColoredString)) if IS_PY2: s = s.encode(ENCODING, errors='ignore') clint_puts(s, newline=newline, stream=stream)
def puts(s='', newline=True, stream=sys.stdout.write): assert not IS_PY2 or ( isinstance(s, unicode) or isinstance(s, colored.ColoredString)) if IS_PY2: s = s.encode(ENCODING, errors='ignore') clint_puts(s, newline=newline, stream=stream)