This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: test_asyncio Resource Warnings
Type: behavior Stage: resolved
Components: asyncio, Tests Versions: Python 3.6
process
Status: closed Resolution: duplicate
Dependencies: Superseder: ResourceWarnings in test_asyncio
View: 27746
Assigned To: Nosy List: giampaolo.rodola, gvanrossum, terry.reedy, vstinner, yselivanov
Priority: normal Keywords:

Created on 2016-08-17 21:15 by terry.reedy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg272986 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2016-08-17 21:15
3.6, Windows 10, debug build. The following appeared before and after pulling and rebuilding today. I am reporting as per Victor's request on pydev list.

0:00:22 [ 52/402] test_asyncio passed
F:\Python\dev\36\lib\asyncio\sslproto.py:329: ResourceWarning: unclosed transport <asyncio.sslproto._SSLProtocolTransport object at 0x03B57658>
  source=self)
F:\Python\dev\36\lib\asyncio\sslproto.py:329: ResourceWarning: unclosed transport <asyncio.sslproto._SSLProtocolTransport object at 0x03B57E70>
  source=self)
F:\Python\dev\36\lib\asyncio\sslproto.py:329: ResourceWarning: unclosed transport <asyncio.sslproto._SSLProtocolTransport object at 0x03AA9038>
  source=self)
msg272989 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2016-08-17 21:19
Duplicate of issue #27746.
History
Date User Action Args
2022-04-11 14:58:34adminsetgithub: 71976
2016-08-18 00:54:21berker.peksagsetstatus: open -> closed
stage: needs patch -> resolved
2016-08-17 21:19:44vstinnersetsuperseder: ResourceWarnings in test_asyncio
resolution: duplicate
messages: + msg272989
2016-08-17 21:15:06terry.reedycreate