<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/cpython-git.git/Objects/unionobject.c, branch master</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-44662: Add ability to annotate types.Union (#27214)</title>
<updated>2021-07-29T19:44:48+00:00</updated>
<author>
<name>Yurii Karabas</name>
<email>1998uriyyo@gmail.com</email>
</author>
<published>2021-07-29T19:44:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8182c8329c709f42218a8a17d81639ece5b7b627'/>
<id>8182c8329c709f42218a8a17d81639ece5b7b627</id>
<content type='text'>
Co-authored-by: Ken Jin &lt;28750310+Fidget-Spinner@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Ken Jin &lt;28750310+Fidget-Spinner@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44732: Rename types.Union to types.UnionType (#27342)</title>
<updated>2021-07-26T16:00:21+00:00</updated>
<author>
<name>Hasan</name>
<email>hasan.aleeyev@gmail.com</email>
</author>
<published>2021-07-26T16:00:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2b8ad9e6c5f0a66e9ca2d15f85336d8a3eefefb0'/>
<id>2b8ad9e6c5f0a66e9ca2d15f85336d8a3eefefb0</id>
<content type='text'>
Co-authored-by: Łukasz Langa &lt;lukasz@langa.pl&gt;
Co-authored-by: Jelle Zijlstra &lt;jelle.zijlstra@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Łukasz Langa &lt;lukasz@langa.pl&gt;
Co-authored-by: Jelle Zijlstra &lt;jelle.zijlstra@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44676: Serialize the union type using only public API (GH-27323)</title>
<updated>2021-07-24T18:26:02+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-24T18:26:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=435a0334d341e5f8faed594d9f015746bb7845db'/>
<id>435a0334d341e5f8faed594d9f015746bb7845db</id>
<content type='text'>
Remove also the _from_args() constructor.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove also the _from_args() constructor.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44676: Fix reference leaks in union_reduce (GH-27332)</title>
<updated>2021-07-24T14:25:54+00:00</updated>
<author>
<name>Pablo Galindo Salgado</name>
<email>Pablogsal@gmail.com</email>
</author>
<published>2021-07-24T14:25:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=8158e059e9952f08d19a18d3e9e021cee2393cd2'/>
<id>8158e059e9952f08d19a18d3e9e021cee2393cd2</id>
<content type='text'>
Automerge-Triggered-By: GH:pablogsal</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Automerge-Triggered-By: GH:pablogsal</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44731: Simplify the union type implementation (GH-27318)</title>
<updated>2021-07-24T13:34:48+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-24T13:34:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=08284231275ac9cc60ae27eab2338805919d8881'/>
<id>08284231275ac9cc60ae27eab2338805919d8881</id>
<content type='text'>
Remove direct support of typing types in the C code because they are already supported by defining methods __or__ and __ror__ in the Python code.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove direct support of typing types in the C code because they are already supported by defining methods __or__ and __ror__ in the Python code.</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44676: Add ability to serialize types.Union (GH-27244)</title>
<updated>2021-07-23T09:47:00+00:00</updated>
<author>
<name>Yurii Karabas</name>
<email>1998uriyyo@gmail.com</email>
</author>
<published>2021-07-23T09:47:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=fe13f0b0f696464dd6f283576668dbf57cb11399'/>
<id>fe13f0b0f696464dd6f283576668dbf57cb11399</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44653: Support typing types in parameter substitution in the union type. (GH-27247)</title>
<updated>2021-07-22T21:57:06+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-22T21:57:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=2e3744d50b6e30ea24351e55b4352dcc58fd469e'/>
<id>2e3744d50b6e30ea24351e55b4352dcc58fd469e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44633: Fix parameter substitution of the union type with wrong types. (GH-27218)</title>
<updated>2021-07-18T09:10:19+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-18T09:10:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=3ea5332a4365bdd771286b3e9692495116e9ceef'/>
<id>3ea5332a4365bdd771286b3e9692495116e9ceef</id>
<content type='text'>
A TypeError is now raised instead of returning NotImplemented.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A TypeError is now raised instead of returning NotImplemented.
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44654: Refactor and clean up the union type implementation (GH-27196)</title>
<updated>2021-07-17T19:44:10+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-17T19:44:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0fd27375cabd12e68a2f12cfeca11a2d5043429e'/>
<id>0fd27375cabd12e68a2f12cfeca11a2d5043429e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>bpo-44652: Preserve natural order of args in the union type. (GH-27185)</title>
<updated>2021-07-16T13:11:30+00:00</updated>
<author>
<name>Serhiy Storchaka</name>
<email>storchaka@gmail.com</email>
</author>
<published>2021-07-16T13:11:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/cpython-git.git/commit/?id=0cd2d51aadcd2a0c0739a5df0a6235d64f35619e'/>
<id>0cd2d51aadcd2a0c0739a5df0a6235d64f35619e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
