Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
…g weakref objects (python#128)
Codecov Report
@@ Coverage Diff @@
## 3.5 #188 +/- ##
==========================================
- Coverage 82.41% 82.41% -0.01%
==========================================
Files 1404 1404
Lines 341433 341433
==========================================
- Hits 281402 281396 -6
- Misses 60031 60037 +6
Continue to review full report at Codecov.
|
…nd coroutines Improve the finalisation of a soft switched YIELD_FROM instruction.
…ed methods Enable stackless calls of the following methods: - generator.send() (generator.__next__() was already stackless); - coroutine.send(); - coroutine_wrapper.__next__() and coroutine_wrapper.send(); - async_generator_asend.__next__() and async_generator_asend.send(). This change needs more tests.
Fix a error handling in the YIELD_FROM finalisation code. Add tests and changelog.txt
…(async) generators and coroutines Enable soft switching for iterators/coroutines called by "yield from". Improve the finalisation of a soft switched YIELD_FROM instruction. Enable stackless calls of the following methods: - generator.send() (generator.__next__() was already stackless); - coroutine.send(); - coroutine_wrapper.__next__() and coroutine_wrapper.send(); - async_generator_asend.__next__() and async_generator_asend.send().
…#188 This commit fixes an assert statement, that could fail since python#188. No functional change. (cherry picked from commit 5595eec)
…#188 This commit fixes an assert statement, that could fail since python#188. No functional change.
No description provided.