<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/astroid-git.git, branch 2.2</title>
<subtitle>github.com: PyCQA/astroid.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/'/>
<entry>
<title>Prepare 2.2.5</title>
<updated>2019-03-08T16:14:08+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-08T16:14:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=01a25f31962dd5017a141a6450859a7c1c82722d'/>
<id>01a25f31962dd5017a141a6450859a7c1c82722d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use a list to hold the statements to be filtered per node instead of keeping them in a dict</title>
<updated>2019-03-08T16:10:16+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-04T08:57:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=f33c5a0cdf286d010175ab41e44d790c3d3f63ea'/>
<id>f33c5a0cdf286d010175ab41e44d790c3d3f63ea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>The last except handler wins when inferring variables bound in an except handler.</title>
<updated>2019-03-08T16:10:09+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-03T14:17:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=f8155a0bfc970dfe90c9aadbb1a7833f7865e21b'/>
<id>f8155a0bfc970dfe90c9aadbb1a7833f7865e21b</id>
<content type='text'>
Close PyCQA/pylint#2777
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Close PyCQA/pylint#2777
</pre>
</div>
</content>
</entry>
<entry>
<title>Add changelog entry for typed-ast change plus prepare 2.2.4</title>
<updated>2019-03-05T09:33:20+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-05T09:32:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=7a88072f9f624e59e52f4e05736ce592ca1467fc'/>
<id>7a88072f9f624e59e52f4e05736ce592ca1467fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the latest typed-ast across the board</title>
<updated>2019-03-05T09:31:42+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-05T09:31:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=9a4e1ac429538b8a3a430ea5065d3e36809d619a'/>
<id>9a4e1ac429538b8a3a430ea5065d3e36809d619a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump to 2.2.3 and add ChangeLog entry</title>
<updated>2019-03-04T09:01:10+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-04T09:01:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=5443588043468f5ae135fa06ac4e31ac40b92314'/>
<id>5443588043468f5ae135fa06ac4e31ac40b92314</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace `any` with `uninferable` when returning values from `numpy` transform</title>
<updated>2019-03-04T08:58:35+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-04T08:19:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=5c68e367a17cb30bf33a72ad4d3c90bd7da92bb9'/>
<id>5c68e367a17cb30bf33a72ad4d3c90bd7da92bb9</id>
<content type='text'>
Turns out that this was conflicting with the `any` builtin, while the original
intention was to return a value that cannot be inferred, until we have support
for types.

This should fix a couple of false positives on pylint's side where the return
value of numpy functions was considered to be itself a function.

Close PyCQA/pylint#2784
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Turns out that this was conflicting with the `any` builtin, while the original
intention was to return a value that cannot be inferred, until we have support
for types.

This should fix a couple of false positives on pylint's side where the return
value of numpy functions was considered to be itself a function.

Close PyCQA/pylint#2784
</pre>
</div>
</content>
</entry>
<entry>
<title>Add automatic travis deploys</title>
<updated>2019-03-03T12:07:18+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-02T13:32:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=d819a0266d134a19f4e6ce6b9ae09f52314cc6c9'/>
<id>d819a0266d134a19f4e6ce6b9ae09f52314cc6c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare 2.2.2</title>
<updated>2019-03-02T12:40:37+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-02T12:40:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=5348fe65943d5d83907f16f28e21896622c9e4f6'/>
<id>5348fe65943d5d83907f16f28e21896622c9e4f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare 2.2.1</title>
<updated>2019-03-02T11:54:26+00:00</updated>
<author>
<name>Claudiu Popa</name>
<email>pcmanticore@gmail.com</email>
</author>
<published>2019-03-02T11:54:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=2caa1b3c4e838a21f144a0de05bfa82d9cdacf30'/>
<id>2caa1b3c4e838a21f144a0de05bfa82d9cdacf30</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
