1. 0025350 bpo-37069: tests use catch_unraisable_exception() (GH-13762) by Victor Stinner · 5 years ago
  2. 3cf7ea1 bpo-37100: Fix test_coroutines with -Werror (GH-13756) by Victor Stinner · 5 years ago
  3. 3880f26 bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-13577) by Matthias Bussonnier · 5 years ago
  4. e4d300e bpo-36829: Add test.support.catch_unraisable_exception() (GH-13490) by Victor Stinner · 5 years ago
  5. 90d0cfb bpo-35202: Remove unused imports in tests. (GH-10561) by Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) · 6 years ago
  6. 8425de4 bpo-33562: Check the global asyncio event loop policy isn't set after any tests (GH-7328) by Brett Cannon · 6 years ago
  7. e239650 bpo-33363: raise SyntaxError for async for/with outside async functions (#6616) by Zsolt Dollenstein · 6 years ago
  8. 2eeac26 bpo-29922: Add more tests for error messages in 'async with'. (GH-6370) by Serhiy Storchaka · 6 years ago
  9. a68f2f0 bpo-29922: Improve error messages in 'async with' (GH-6352) by Serhiy Storchaka · 6 years ago
  10. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 6 years ago
  11. 24d3201 bpo-33041: Fixed bytecode generation for "async for" with a complex target. (#6052) by Serhiy Storchaka · 6 years ago
  12. 2efb973 bpo-32733: Make test_coroutines robust against -Werror (GH-5487) by Nathaniel J. Smith · 6 years ago
  13. 2a2270d bpo-32703: Fix coroutine resource warning in case where there's an error (GH-5410) by Yury Selivanov · 6 years ago
  14. 95e2147 bpo-32591: silence deprecation warnings in test_coroutine (GH-5412) by Nathaniel J. Smith · 6 years ago
  15. dba976b bpo-32591: fix abort in _PyErr_WarnUnawaitedCoroutine during shutdown (#5337) by Nathaniel J. Smith · 6 years ago
  16. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  17. b8ab9d3 bpo-31708: Allow async generator expressions in synchronous functions (#3905) by Yury Selivanov · 7 years ago
  18. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  19. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 7 years ago
  20. 24c738a bpo-29845: Mark tests that use _testcapi as CPython-only (#711) by Serhiy Storchaka · 7 years ago
  21. b7c9150 Fix wrapping into StopIteration of return values in generators and coroutines (#644) by Yury Selivanov · 7 years ago
  22. 398ff91 bpo-28893: Set __cause__ for errors in async iteration protocol (#407) by Yury Selivanov · 7 years ago
  23. 2edd8a1 Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning. by Yury Selivanov · 8 years ago
  24. 60e49aa Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 8 years ago
  25. 24411f8 Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 8 years ago
  26. 8987c9d Issue #26182: Raise DeprecationWarning for improper use of async/await keywords by Yury Selivanov · 8 years ago
  27. 52c4e7c Issue #28008: Implement PEP 530 -- asynchronous comprehensions. by Yury Selivanov · 8 years ago
  28. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  29. 48c8830 capture stderr to silence output during test_coroutines (closes #27968) by Benjamin Peterson · 8 years ago
  30. 2f40ed4 do not allow _PyGen_Finalize to fail (closes #27811) by Benjamin Peterson · 8 years ago
  31. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  32. 70c502a Fix typos and English grammar in documentation and code comment by Martin Panter · 8 years ago
  33. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  34. c724bae coroutines: Error when awaiting on coroutine that's being awaited by Yury Selivanov · 8 years ago
  35. 77c9681 Issue #25887: Raise a RuntimeError when a coroutine is awaited more than once. by Yury Selivanov · 8 years ago
  36. 609a2e1 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now by Serhiy Storchaka · 9 years ago
  37. 718c984 Close #25367: Fix test_coroutines() by Victor Stinner · 9 years ago
  38. b45c0f7 Close #25367: Fix test_coroutines with no thread support by Victor Stinner · 9 years ago
  39. 96ec934 Issue #24619: Simplify async/await tokenization. by Yury Selivanov · 9 years ago
  40. f315c1c Issue #24687: Plug refleak on SyntaxError in function parameters annotations. by Yury Selivanov · 9 years ago
  41. b7666a3 Issue #24619: More tests; fix nits in compiler.c by Yury Selivanov · 9 years ago
  42. 8fb307c Issue #24619: New approach for tokenizing async/await. by Yury Selivanov · 9 years ago
  43. e13f8f3 Issue #24450: Add gi_yieldfrom to generators; cr_await to coroutines. by Yury Selivanov · 9 years ago
  44. f270152 Issue #24400: Add one more unittest for CoroutineType.__await__ by Yury Selivanov · 9 years ago
  45. 86cd7d6 test_coroutines: remove whitespace by Yury Selivanov · 9 years ago
  46. 9dec035 Issue #24528: Improve error message for awaits in comprehensions by Yury Selivanov · 9 years ago
  47. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  48. 94c2263 Issue 24374: Plug refleak in set_coroutine_wrapper by Yury Selivanov · 9 years ago
  49. aab3c4a Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully by Yury Selivanov · 9 years ago
  50. 8085b80 Issue 24226: Fix parsing of many sequential one-line 'def' statements. by Yury Selivanov · 9 years ago
  51. 9113dc7 Issue 24017: More tests for 'async for' and 'async with'. by Yury Selivanov · 9 years ago
  52. 37ac590 Clean up test_coroutines a bit. by Zachary Ware · 9 years ago
  53. baaadbf Issue 24017: fix for "async with" refcounting by Nick Coghlan · 9 years ago
  54. fdba838 Issue #24017: Unset asyncio event loop after test. by Yury Selivanov · 9 years ago
  55. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago