[issue44697] Memory leak when asyncio.open_connection raise

2021-08-05 Thread Jack DeVries
Change by Jack DeVries : -- pull_requests: -26111 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue44697] Memory leak when asyncio.open_connection raise

2021-08-05 Thread Jack DeVries
Change by Jack DeVries : -- keywords: +patch nosy: +jack__d nosy_count: 6.0 -> 7.0 pull_requests: +26111 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27617 ___ Python tracker _

[issue44697] Memory leak when asyncio.open_connection raise

2021-07-26 Thread Kyle Stanley
Kyle Stanley added the comment: Thank you Arteem, that should help indicate where the memory leak is present. -- ___ Python tracker ___ ___

[issue44697] Memory leak when asyncio.open_connection raise

2021-07-26 Thread Artem
Artem added the comment: Checked on 3.9.6 - still leaking. Strange stuff, but if I write except OSError as e: del self instead of except OSError as e: pass leak is disappearing. -- versions: +Python 3.9 -Python 3.6 ___ Python tracker

[issue44697] Memory leak when asyncio.open_connection raise

2021-07-22 Thread Artem
Change by Artem : -- nosy: +bquinlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/

[issue44697] Memory leak when asyncio.open_connection raise

2021-07-22 Thread Andrey
Andrey added the comment: Confirmed. I have the same problem. I suspect this is related to https://bugs.python.org/issue41699. -- nosy: +whoKilledLora ___ Python tracker ___

[issue44697] Memory leak when asyncio.open_connection raise

2021-07-21 Thread Artem
New submission from Artem : I write some short example. import resource import asyncio class B: def __init__(self, loop): self.loop = loop self.some_big_data = bytearray(1024 * 1024) # 1Mb for memory bloating async def doStuff(self): if not await self.connect