[issue23819] test_asyncio fails when run under -O

2022-01-08 Thread Andrew Svetlov
Andrew Svetlov added the comment: Is anything left to do? -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2021-12-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 07229054a129a72b4ffdf29252eb73c6154c0ccf by Miss Islington (bot) in branch '3.9': [3.9] bpo-23819: Fix asyncio tests on python optimized mode (GH-30195) (GH-30265)

[issue23819] test_asyncio fails when run under -O

2021-12-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +28482 pull_request: https://github.com/python/cpython/pull/30265 ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2021-12-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset a23ab7b6d8b3ae3a47747c0c4bceb2370cc48dcc by Kumar Aditya in branch 'main': bpo-23819: Fix asyncio tests on python optimized mode (GH-30195) https://github.com/python/cpython/commit/a23ab7b6d8b3ae3a47747c0c4bceb2370cc48dcc --

[issue23819] test_asyncio fails when run under -O

2021-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 95948169d75bed3936284ea2225e83e07ec5fe20 by Miss Islington (bot) in branch '3.10': bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) (GH-30213) https://github.com/python/cpython/commit/95948169d75bed3936284ea2225e83e07ec5fe20

[issue23819] test_asyncio fails when run under -O

2021-12-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6ca78affc8023bc5023189d64d8050857662042a by Serhiy Storchaka in branch 'main': bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) https://github.com/python/cpython/commit/6ca78affc8023bc5023189d64d8050857662042a --

[issue23819] test_asyncio fails when run under -O

2021-12-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +28434 pull_request: https://github.com/python/cpython/pull/30213 ___ Python tracker

[issue23819] test_asyncio fails when run under -O

2021-12-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- nosy: +serhiy.storchaka nosy_count: 5.0 -> 6.0 pull_requests: +28433 pull_request: https://github.com/python/cpython/pull/30212 ___ Python tracker

[issue23819] test_asyncio fails when run under -O

2021-12-19 Thread Kumar Aditya
Change by Kumar Aditya : -- pull_requests: +28416 pull_request: https://github.com/python/cpython/pull/30195 ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2021-12-06 Thread Andrew Svetlov
Andrew Svetlov added the comment: New changeset 265918bb1d782ab85c7dbc835eb62d6cfc2145b7 by Kumar Aditya in branch 'main': bpo-23819: asyncio: Replace AssertionError with TypeError where it makes sense (GH-29894)

[issue23819] test_asyncio fails when run under -O

2021-12-02 Thread Kumar Aditya
Change by Kumar Aditya : -- keywords: +patch pull_requests: +28118 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29894 ___ Python tracker

[issue23819] test_asyncio fails when run under -O

2021-11-30 Thread Kumar Aditya
Kumar Aditya added the comment: I would like to tackle this, I'll work on this from next week. -- nosy: +kumaraditya303 ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2021-11-29 Thread Guido van Rossum
Guido van Rossum added the comment: I'd be happy to mentor someone who wants to tackle this. -- keywords: +easy ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2021-11-29 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue23819] test_asyncio fails when run under -O

2021-11-27 Thread Guido van Rossum
Guido van Rossum added the comment: I'm sure there's more to it, but I found at least this failure: ~/cpython$ ./python.exe -O -m test test_asyncio -m test_set_event_loop Raised RLIMIT_NOFILE: 256 -> 1024 0:00:00 load avg: 2.02 Run tests sequentially 0:00:00 load avg: 2.02 [1/1] test_asyncio

[issue23819] test_asyncio fails when run under -O

2021-11-27 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.11 -Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23819] test_asyncio fails when run under -O

2019-10-21 Thread STINNER Victor
STINNER Victor added the comment: This issue is still relevant 4 years later: many test_asyncio tests fail with python3 -O :-( -- ___ Python tracker ___

[issue23819] test_asyncio fails when run under -O

2015-03-31 Thread Brett Cannon
New submission from Brett Cannon: Ton of failures along the lines of: == ERROR: test_ctor (test.test_asyncio.test_unix_events.UnixReadPipeTransportTests) --

[issue23819] test_asyncio fails when run under -O

2015-03-31 Thread STINNER Victor
STINNER Victor added the comment: -O disables assertions, and asyncio has a ton of assertions. Some tests maybe rely on them? I guess that they are real bugs (assert must be replaced with a regular if+raise) in the middle of the failures. -- ___