-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Running any of the sample programs resulted in a "CONSOLE PROCESS ENDED"
message and quitting or hanging the application.
I found this blog post (http://d.hatena.ne.jp/ohtorii/20110409/1302340942) that
describes how to fix it and figured I'd mention it here for anyone that comes
after me with the same issues.
Change line 209 of pyconsole.py to:
if 0:
self.con_window = win32console.GetConsoleWindow().handle
else:
self.con_window = win32console.GetConsoleWindow()
This solved it for me on win7 x64, python 2.7.2, pyconsole-1.0
Original issue reported on code.google.com by brinki...@gmail.com on 9 Jan 2012 at 12:11