<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Include/genobject.h, branch misc-acks-comment</title>
<subtitle>github.com: python/cpython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/'/>
<entry>
<title>bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (#7468)</title>
<updated>2019-09-30T05:59:11+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yury@magic.io</email>
</author>
<published>2019-09-30T05:59:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fc4a044a3c54ce21e9ed150f7d769fb479d34c49'/>
<id>fc4a044a3c54ce21e9ed150f7d769fb479d34c49</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702)</title>
<updated>2019-09-06T15:41:38+00:00</updated>
<author>
<name>Joannah Nanjekye</name>
<email>33177550+nanjekyejoannah@users.noreply.github.com</email>
</author>
<published>2019-09-06T15:41:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=74b662cf202753d224d82d5503974cce881f7436'/>
<id>74b662cf202753d224d82d5503974cce881f7436</id>
<content type='text'>
Remove PyGen_NeedsFinalizing(): it was not
documented, tested or used anywhere within CPython after
the implementation of PEP 442.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove PyGen_NeedsFinalizing(): it was not
documented, tested or used anywhere within CPython after
the implementation of PEP 442.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-35134: Split traceback.h header (GH-13430)</title>
<updated>2019-05-19T22:14:57+00:00</updated>
<author>
<name>Victor Stinner</name>
<email>vstinner@redhat.com</email>
</author>
<published>2019-05-19T22:14:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ed48866c55b8e4ee14faa8b5ad97819e8e74c98b'/>
<id>ed48866c55b8e4ee14faa8b5ad97819e8e74c98b</id>
<content type='text'>
Add new Include/cpython/traceback.h and Include/internal/traceback.h
header files.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add new Include/cpython/traceback.h and Include/internal/traceback.h
header files.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-32591: Add native coroutine origin tracking (#5250)</title>
<updated>2018-01-21T14:44:07+00:00</updated>
<author>
<name>Nathaniel J. Smith</name>
<email>njs@pobox.com</email>
</author>
<published>2018-01-21T14:44:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fc2f407829d9817ddacccae6944dd0879cfaca24'/>
<id>fc2f407829d9817ddacccae6944dd0879cfaca24</id>
<content type='text'>
* Add coro.cr_origin and sys.set_coroutine_origin_tracking_depth
* Use coroutine origin information in the unawaited coroutine warning
* Stop using set_coroutine_wrapper in asyncio debug mode
* In BaseEventLoop.set_debug, enable debugging in the correct thread</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Add coro.cr_origin and sys.set_coroutine_origin_tracking_depth
* Use coroutine origin information in the unawaited coroutine warning
* Stop using set_coroutine_wrapper in asyncio debug mode
* In BaseEventLoop.set_debug, enable debugging in the correct thread</pre>
</div>
</content>
</entry>
<entry>
<title>Move exc state to generator. Fixes bpo-25612 (#1773)</title>
<updated>2017-10-22T21:41:51+00:00</updated>
<author>
<name>Mark Shannon</name>
<email>mark@hotpy.org</email>
</author>
<published>2017-10-22T21:41:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=ae3087c6382011c47db82fea4d05f8bbf514265d'/>
<id>ae3087c6382011c47db82fea4d05f8bbf514265d</id>
<content type='text'>
Move exception state information from frame objects to coroutine (generator/thread) object where it belongs.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move exception state information from frame objects to coroutine (generator/thread) object where it belongs.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-31709: Drop support for asynchronous __aiter__. (#3903)</title>
<updated>2017-10-06T06:08:57+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yury@magic.io</email>
</author>
<published>2017-10-06T06:08:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22'/>
<id>faa135acbfcd55f79fb97f7525c8aa6f5a5b6a22</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23996: Added _PyGen_SetStopIterationValue for safe raising</title>
<updated>2016-11-06T16:47:03+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-11-06T16:47:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=60e49aa7560ca70bc5de461abc68eb72d8739e17'/>
<id>60e49aa7560ca70bc5de461abc68eb72d8739e17</id>
<content type='text'>
StopIteration with value. More safely handle non-normalized exceptions
in -_PyGen_FetchStopIterationValue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
StopIteration with value. More safely handle non-normalized exceptions
in -_PyGen_FetchStopIterationValue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #23996: Added _PyGen_SetStopIterationValue for safe raising</title>
<updated>2016-11-06T16:44:42+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2016-11-06T16:44:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=24411f8a8daace4ebf8abd41091b681160b4fb89'/>
<id>24411f8a8daace4ebf8abd41091b681160b4fb89</id>
<content type='text'>
StopIteration with value. More safely handle non-normalized exceptions
in -_PyGen_FetchStopIterationValue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
StopIteration with value. More safely handle non-normalized exceptions
in -_PyGen_FetchStopIterationValue.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28544: Fix compilation of _asynciomodule.c on Windows</title>
<updated>2016-10-28T22:48:50+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yury@magic.io</email>
</author>
<published>2016-10-28T22:48:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=833c626e6739f7610593e7831166af6d2e064d74'/>
<id>833c626e6739f7610593e7831166af6d2e064d74</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue #28003: Implement PEP 525 -- Asynchronous Generators.</title>
<updated>2016-09-09T05:01:51+00:00</updated>
<author>
<name>Yury Selivanov</name>
<email>yury@magic.io</email>
</author>
<published>2016-09-09T05:01:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=eb6364557f9bc4e6be29bb8a8f43308a0e080aba'/>
<id>eb6364557f9bc4e6be29bb8a8f43308a0e080aba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
