fix _ProactorEventLoop initialization bug#53
fix _ProactorEventLoop initialization bug#53peterazmanov wants to merge 1 commit intoharvimt:masterfrom
Conversation
`QtCore.QObject.__init__(self)` and `asyncio.ProactorEventLoop.__init__(self, _IocpProactor())` causes double initialization of asyncio.ProactorEventLoop, according to mro. Possibly related to harvimt#38.
|
@harvimt Do you have a Windows machine to test this on? I don't understand without testing why |
|
Is it because |
|
I tested on OS X, AFAICT |
|
@aknuds1 I tested this on Windows 7 machine with Python 3.4 |
|
I'm worried that this will be different depending on which Qt implementation is used. |
|
@harvimt why |
|
to receive Qt signals, but like I said a better implementation is a On Wed, Nov 18, 2015 at 3:39 AM, Peter Azmanov notifications@github.com
|
|
I cherry-picked 847df31, and updated the docstrings so flake8-docstrings stops bugging (new check they added), so this is fixed in master. |
QtCore.QObject.__init__(self)andasyncio.ProactorEventLoop.__init__(self, _IocpProactor())causes double initialization of asyncio.ProactorEventLoop, according to mro.Possibly related to #38.