<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/astroid-git.git/tests, branch 2.5</title>
<subtitle>github.com: PyCQA/astroid.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/'/>
<entry>
<title>Prepare for 2.5.2 release</title>
<updated>2021-03-28T15:22:12+00:00</updated>
<author>
<name>Pierre Sassoulas</name>
<email>pierre.sassoulas@gmail.com</email>
</author>
<published>2021-03-28T14:57:00+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=c3b58a3ed2653c6abfa0605e4a34f44c06b234b8'/>
<id>c3b58a3ed2653c6abfa0605e4a34f44c06b234b8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add test</title>
<updated>2021-03-07T16:33:30+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-03-07T16:33:30+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=973e22ee939b7329a8b8cd404fc41174d635f417'/>
<id>973e22ee939b7329a8b8cd404fc41174d635f417</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Removes dead code</title>
<updated>2021-03-07T10:54:14+00:00</updated>
<author>
<name>hippo91</name>
<email>guillaume.peillex@gmail.com</email>
</author>
<published>2021-03-07T10:54:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=379fc8ff7ae8230888c5d27f70afbb05d88ebcb1'/>
<id>379fc8ff7ae8230888c5d27f70afbb05d88ebcb1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Reformats according to black</title>
<updated>2021-03-05T15:04:49+00:00</updated>
<author>
<name>hippo91</name>
<email>guillaume.peillex@gmail.com</email>
</author>
<published>2021-03-05T15:04:49+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=7409caf9a897d3d85d5b5479811326942e933bad'/>
<id>7409caf9a897d3d85d5b5479811326942e933bad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DIsables the test for ravel_multi_index because strangely it fails when numpy is imported without alias whereas it is ok when numpy is imported with an alias. It should be investigated but is probably beyond the scope of this work.</title>
<updated>2021-03-05T15:01:33+00:00</updated>
<author>
<name>hippo91</name>
<email>guillaume.peillex@gmail.com</email>
</author>
<published>2021-03-05T15:01:33+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=1d3490b92d1416a1a575a189fefe7b3b088236b1'/>
<id>1d3490b92d1416a1a575a189fefe7b3b088236b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Double the test by import numpy module without aliasing it</title>
<updated>2021-03-05T14:59:38+00:00</updated>
<author>
<name>hippo91</name>
<email>guillaume.peillex@gmail.com</email>
</author>
<published>2021-03-05T14:59:38+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=ea999913b258e2265fd024a2f54a117a4c1c0163'/>
<id>ea999913b258e2265fd024a2f54a117a4c1c0163</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Solves "Duplicates found in MROs" false positives. (#905, #916)</title>
<updated>2021-02-28T20:16:14+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-02-28T20:16:14+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=181642f33c3ba71f39e73efb334502ad300dfe5a'/>
<id>181642f33c3ba71f39e73efb334502ad300dfe5a</id>
<content type='text'>
* Adds inference support for all typing types that are defined through _alias function
* Instead of creating a new class (by the mean of TYPING_TYPE_TEMPLATE) infer the origin class : i.e MutableSet = _alias(collections.MutableSet ...) origin is the class in collections module. Needs to add __getitem method on its metaclass so that is support indexing (MutableSet[T]).
* Enable _alias mocking and testing only if python version is at least 3.7

Co-authored-by: hippo91 &lt;guillaume.peillex@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Adds inference support for all typing types that are defined through _alias function
* Instead of creating a new class (by the mean of TYPING_TYPE_TEMPLATE) infer the origin class : i.e MutableSet = _alias(collections.MutableSet ...) origin is the class in collections module. Needs to add __getitem method on its metaclass so that is support indexing (MutableSet[T]).
* Enable _alias mocking and testing only if python version is at least 3.7

Co-authored-by: hippo91 &lt;guillaume.peillex@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade copyrite notice</title>
<updated>2021-02-28T19:21:45+00:00</updated>
<author>
<name>Pierre Sassoulas</name>
<email>pierre.sassoulas@gmail.com</email>
</author>
<published>2021-02-28T19:15:35+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=8c2a13fe453f3fc38f3b2f32d5de92f5c87e13d4'/>
<id>8c2a13fe453f3fc38f3b2f32d5de92f5c87e13d4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't transform dataclass ClassVars (#914)</title>
<updated>2021-02-28T17:39:50+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-02-28T17:39:50+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=5f2cfb854c6ab8ae075f17e88d47611954d91ff8'/>
<id>5f2cfb854c6ab8ae075f17e88d47611954d91ff8</id>
<content type='text'>
Co-authored-by: Pierre Sassoulas &lt;pierre.sassoulas@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Pierre Sassoulas &lt;pierre.sassoulas@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Small improvements</title>
<updated>2021-02-28T17:14:22+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-02-28T15:40:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/astroid-git.git/commit/?id=d8f2fab9b0505ae6cea442726b2ee09fb3336a2c'/>
<id>d8f2fab9b0505ae6cea442726b2ee09fb3336a2c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
