[pywin32-checkins] /hgroot/pywin32/pywin32: Add encoding attribute to pywin.framewo...
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <pyw...@li...> - 2012-04-22 05:16:26
|
changeset f8467b5a5da3 in /hgroot/pywin32/pywin32 details: http://pywin32.hg.sourceforge.net/hgweb/pywin32/pywin32/hgroot/pywin32/pywin32?cmd=changeset;node=f8467b5a5da3 summary: Add encoding attribute to pywin.framework.interact.InteractiveView diffstat: Pythonwin/pywin/framework/interact.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diffs (12 lines): diff -r a72460d9b458 -r f8467b5a5da3 Pythonwin/pywin/framework/interact.py --- a/Pythonwin/pywin/framework/interact.py Fri Apr 20 04:38:54 2012 -0400 +++ b/Pythonwin/pywin/framework/interact.py Sun Apr 22 01:12:49 2012 -0400 @@ -631,6 +631,8 @@ def __init__(self, doc): InteractiveCore.__init__(self) winout.WindowOutputView.__init__(self, doc) + self.encoding = pywin.default_scintilla_encoding + def _MakeColorizer(self): return InteractiveFormatter(self) def OnInitialUpdate(self): |