Merge pull request #107 from linkmauve/patch-1

Update colout.py to remove PY2 global
This commit is contained in:
Johann Dreo 2020-05-17 17:38:47 +02:00 committed by GitHub
commit 437e241f2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,8 +30,6 @@ signal.signal( signal.SIGPIPE, signal.SIG_DFL )
# Global variable(s)
###############################################################################
PY2 = sys.version_info.major == 2
context = {}
debug = False
@ -757,9 +755,6 @@ def write(colored, stream = sys.stdout):
"""
Write "colored" on sys.stdout, then flush.
"""
if PY2: # If Python 2.x: force unicode
if isinstance(colored, unicode):
colored = colored.encode('utf-8')
try:
stream.write(colored)
stream.flush()