docstring

This commit is contained in:
Jean-Paul Calderone 2021-01-11 12:31:08 -05:00
parent ad2df670e6
commit dc5ed66815

View File

@ -193,6 +193,11 @@ def initialize():
class UnicodeOutput(object):
"""
``UnicodeOutput`` is a file-like object that encodes unicode to UTF-8 and
writes it to another file or writes unicode natively to the Windows
console.
"""
def __init__(self, hConsole, stream, fileno, name, _complain):
self._hConsole = hConsole
self._stream = stream