[issue27968] test_coroutines generates some warnings

2018-01-28 Thread Yury Selivanov
Change by Yury Selivanov : -- pull_requests: +5245 ___ Python tracker ___ ___

[issue27968] test_coroutines generates some warnings

2016-09-07 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks Benjamin! -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue27968] test_coroutines generates some warnings

2016-09-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 096dfac57e44 by Benjamin Peterson in branch '3.5': capture stderr to silence output during test_coroutines (closes #27968) https://hg.python.org/cpython/rev/096dfac57e44 New changeset b43923ce86f0 by Benjamin Peterson in branch 'default': merge 3.5

[issue27968] test_coroutines generates some warnings

2016-09-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 234f758449f8 by Benjamin Peterson in branch '3.5': supress coroutine warning when an exception is pending (#27968) https://hg.python.org/cpython/rev/234f758449f8 New changeset f48b00b1ec4f by Benjamin Peterson in branch 'default': merge 3.5

[issue27968] test_coroutines generates some warnings

2016-09-06 Thread Xiang Zhang
Xiang Zhang added the comment: Run hg bisect and get 756c27efe193. -- nosy: +benjamin.peterson ___ Python tracker ___

[issue27968] test_coroutines generates some warnings

2016-09-06 Thread Guido van Rossum
Guido van Rossum added the comment: Yury this smells of something in async/await? -- assignee: -> yselivanov ___ Python tracker ___

[issue27968] test_coroutines generates some warnings

2016-09-06 Thread Guido van Rossum
Guido van Rossum added the comment: NM I get the same on Mac after rebuilding from scratch. I can repro this with the 3.5 branch too. Wonder if something changed in asyncio? -- versions: +Python 3.5 ___ Python tracker

[issue27968] test_coroutines generates some warnings

2016-09-06 Thread Guido van Rossum
Guido van Rossum added the comment: I only have a Mac to test -- does anyone else on this issue have a Linux system to try to reproduce this? -- ___ Python tracker

[issue27968] test_coroutines generates some warnings

2016-09-06 Thread Xiang Zhang
New submission from Xiang Zhang: ./python -m test test_coroutines Run tests sequentially 0:00:00 [1/1] test_coroutines /home/angwer/cpython/Lib/test/test_coroutines.py:891: RuntimeWarning: coroutine 'CoroutineTest.test_await_12..coro' was never awaited return await Awaitable()