-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Asynchronous context managers aren't cleaned up #35
Comments
@gworkman does it work with qasync.run? |
Is this fixed by PR #58 and if so, is there a reason the PR hasn't merged? |
I'm going to assume what your code looks like. When you call import sys
import qasync
import asyncio
from PySide6 import QtWidgets
class Widget(QtWidgets.QWidget):
def __init__(self):
QtWidgets.QWidget.__init__(self)
self._label = QtWidgets.QLabel()
box = QtWidgets.QHBoxLayout()
self.setLayout(box)
box.addWidget(self._label)
def update(self, text):
self._label.setText(text)
class ContextManager:
def __init__(self) -> None:
self._seconds = 0
async def __aenter__(self):
print("ContextManager enter")
return self
async def __aexit__(self, *args):
print("ContextManager exit")
async def tick(self):
await asyncio.sleep(1)
self._seconds += 1
return self._seconds
async def main(widget):
print("Task started")
try:
async with ContextManager() as ctx:
while True:
seconds = await ctx.tick()
widget.update(str(seconds))
except asyncio.CancelledError as ex:
print("Task cancelled")
app = QtWidgets.QApplication(sys.argv)
graph = Widget()
graph.show()
loop = qasync.QEventLoop(app)
asyncio.set_event_loop(loop)
# run until app.exec() is finished (Qt window is closed)
task = loop.create_task(main(graph))
loop.run_forever()
# cancel remaining tasks and wait for them to complete
task.cancel()
tasks = asyncio.all_tasks()
loop.run_until_complete(asyncio.gather(*tasks)) |
That's great code Alex: I used it for a phantomjs replacement in PyQt where I just wanted to use QtWebkitPage.load without a GUI and to interact async with the callbacks. Your code works with Widget/graph=None and no blocking Could I suggest that you drop that into Do you use IRC? Is there an IRC host you use? I'd like to chat about a few details of the version of your code I did, but am not ready to put on github - let me know a good time if so. |
Yeah, putting this into examples/ is a good idea. In general, the documentation can really do with some love and care. I'm sorry I don't use IRC. If it is something related to qasync, feel free to post your question/suggestion in the issues here on github. |
I have a class
Foo
that is an asynchronous context manager, ie it implementsasync def __aenter__(self)
andasync def __aexit__(self, exc_type, exc, tb)
, and I use it like:Before adding
pyqtgraph
to the project and just using regularasyncio
, it worked completely fine, but now when I use theqasync
event loop, it doesn't clean up via the__aexit__
method. Specifically, I expect it to clean up when I close the Qt window. My main function look something like this:Edit: adding versions
Running on MacOS Catalina 10.15.7
The text was updated successfully, but these errors were encountered: