[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
STINNER Victor added the comment: Ok, the bug is now fixed. Thanks for your bug report John Nelson! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset d5a6adf6285ec8892b977a32c22143ebd1025b50 by Victor Stinner in branch '3.7': [3.7] bpo-34323: Enhance IocpProactor.close() log (GH-11565) https://github.com/python/cpython/commit/d5a6adf6285ec8892b977a32c22143ebd1025b50 --

[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
STINNER Victor added the comment: Oops, I used the wrong bpo number for my second change in master: New changeset b91140fdb17472d03a7b7971f143c08a40fde923 by Victor Stinner in branch 'master': bpo-11555: Enhance IocpProactor.close() log again (GH-11563)

[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11225, 11226 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11225 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34323] False timeout log message on proactor close

2019-01-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset b1e45739d832e1e402a563c6727defda92e193b7 by Victor Stinner in branch 'master': bpo-34323: Enhance IocpProactor.close() log (GH-11555) https://github.com/python/cpython/commit/b1e45739d832e1e402a563c6727defda92e193b7 -- nosy: +vstinner

[issue34323] False timeout log message on proactor close

2019-01-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11190, 11191, 11192 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34323] False timeout log message on proactor close

2019-01-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11190 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34323] False timeout log message on proactor close

2019-01-14 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +11190, 11191 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch, patch pull_requests: +11013, 11014 stage: -> patch review ___ Python tracker ___

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch, patch, patch pull_requests: +11013, 11014, 11015 stage: -> patch review ___ Python tracker ___

[issue34323] False timeout log message on proactor close

2019-01-09 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +11013 stage: -> patch review ___ Python tracker ___ ___

[issue34323] False timeout log message on proactor close

2018-08-11 Thread John Nelson
John Nelson added the comment: Python 3.5.4 (v3.5.4:3f56838, Aug 8 2017, 02:17:05) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import platform, sys >>> platform.win32_ver() ('2012ServerR2', '6.3.9600', 'SP0', 'Multiprocessor

[issue34323] False timeout log message on proactor close

2018-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi johnboy2, thank you for your issue, but could you send us more information about your platform? thank you -- nosy: +matrixise ___ Python tracker

[issue34323] False timeout log message on proactor close

2018-08-02 Thread John Nelson
John Nelson added the comment: I *suspect* the issue is down to a discrepancy between: - IocpProactor.close(), and - IocpProactor._poll() When the former calls the latter, it seems to be expecting a truth value response from _poll() to indicate that no timeout occurred. However, the latter

[issue34323] False timeout log message on proactor close

2018-08-02 Thread John Nelson
New submission from John Nelson : Repro: 1. Run the attached script ('repro.py') Expected output: 2018-07-31 16:39:57,069 - asyncio - DEBUG - Using proactor: IocpProactor 2018-07-31 16:39:57,084 - root - INFO - Starting 2018-07-31 16:39:58,100 - root - INFO - Sleep done 2018-07-31