<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/astroid-git.git/astroid/nodes/node_classes.py, branch v2.9.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>Bump astroid to 2.9.2, update changelog</title>
<updated>2022-01-03T23:14:27+00:00</updated>
<author>
<name>Alexander Shadchin</name>
<email>alexandr.shadchin@gmail.com</email>
</author>
<published>2022-01-03T23:02:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=101aed9d304cae4c3d0d9140f151b852b21c7ddf'/>
<id>101aed9d304cae4c3d0d9140f151b852b21c7ddf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bump astroid to 2.9.1, update changelog</title>
<updated>2021-12-31T12:25:52+00:00</updated>
<author>
<name>Pierre Sassoulas</name>
<email>pierre.sassoulas@gmail.com</email>
</author>
<published>2021-12-31T12:21:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=e36b4388aebb892c10ed779bafc9c1a07a325b8d'/>
<id>e36b4388aebb892c10ed779bafc9c1a07a325b8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add future=True to frame calls (#1305)</title>
<updated>2021-12-29T15:23:33+00:00</updated>
<author>
<name>Tushar Sadhwani</name>
<email>86737547+tushar-deepsource@users.noreply.github.com</email>
</author>
<published>2021-12-29T15:23:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=aa4f5bed58dc6521a6c2c0927ca0e0da48fd5ea5'/>
<id>aa4f5bed58dc6521a6c2c0927ca0e0da48fd5ea5</id>
<content type='text'>
Co-authored-by: Pierre Sassoulas &lt;pierre.sassoulas@gmail.com&gt;
Co-authored-by: Jacob Walls &lt;jacobtylerwalls@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;
Co-authored-by: Jacob Walls &lt;jacobtylerwalls@gmail.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix frame() error on inferred node (#1263)</title>
<updated>2021-12-29T08:35:20+00:00</updated>
<author>
<name>Tushar Sadhwani</name>
<email>86737547+tushar-deepsource@users.noreply.github.com</email>
</author>
<published>2021-12-29T08:35: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=12e2e8ce8a33b06c9b3d97007ca89120b529c215'/>
<id>12e2e8ce8a33b06c9b3d97007ca89120b529c215</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>Fix spelling (#1318)</title>
<updated>2021-12-28T00:37:41+00:00</updated>
<author>
<name>Marc Mueller</name>
<email>30130371+cdce8p@users.noreply.github.com</email>
</author>
<published>2021-12-28T00:37:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=ac0ed1f87ec218ee610101a20f29032a45ddff58'/>
<id>ac0ed1f87ec218ee610101a20f29032a45ddff58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move ``_filter_stmts`` into its own file (#1303)</title>
<updated>2021-12-20T10:34:59+00:00</updated>
<author>
<name>Daniël van Noord</name>
<email>13665637+DanielNoord@users.noreply.github.com</email>
</author>
<published>2021-12-20T10:34:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=e41a896e47d8b5dcd4c460c72bde8063e7c9b447'/>
<id>e41a896e47d8b5dcd4c460c72bde8063e7c9b447</id>
<content type='text'>
We need access to all types of nodes in _filter_stmts. Not only those in node_classes
(the file in which it was defined).

This change shows that by moving _filter_stmts into its own file we can import the nodes
module and access all of them. This will allow to fix some issue with it. I have tried to keep
the change as minimal as possible and only changed how we refer to nodes.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need access to all types of nodes in _filter_stmts. Not only those in node_classes
(the file in which it was defined).

This change shows that by moving _filter_stmts into its own file we can import the nodes
module and access all of them. This will allow to fix some issue with it. I have tried to keep
the change as minimal as possible and only changed how we refer to nodes.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typos (#1288)</title>
<updated>2021-12-13T08:04:26+00:00</updated>
<author>
<name>Kian Meng, Ang</name>
<email>kianmeng.ang@gmail.com</email>
</author>
<published>2021-12-13T08:04: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=c28bf74283500287e04fb9f5fcc739edc72cd7cd'/>
<id>c28bf74283500287e04fb9f5fcc739edc72cd7cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add parameter typing to ``assigned_stmts`` (#1249)</title>
<updated>2021-12-08T21:38:05+00:00</updated>
<author>
<name>Daniël van Noord</name>
<email>13665637+DanielNoord@users.noreply.github.com</email>
</author>
<published>2021-12-08T21:38:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=037b75dc4edc80086b214028f6cc5f53a851872f'/>
<id>037b75dc4edc80086b214028f6cc5f53a851872f</id>
<content type='text'>
Co-authored-by: Marc Mueller &lt;30130371+cdce8p@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Marc Mueller &lt;30130371+cdce8p@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typing of Arguments.args (#1283)</title>
<updated>2021-12-05T12:03:21+00:00</updated>
<author>
<name>Daniël van Noord</name>
<email>13665637+DanielNoord@users.noreply.github.com</email>
</author>
<published>2021-12-05T12:03: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=8ea31c8f197c3f4c1fefdbf861530c831d250a59'/>
<id>8ea31c8f197c3f4c1fefdbf861530c831d250a59</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Upgrade to pylint 2.12 and enable ``for_any_all`` checker (#1277)</title>
<updated>2021-11-27T15:25:01+00:00</updated>
<author>
<name>Nick Drozd</name>
<email>nicholasdrozd@gmail.com</email>
</author>
<published>2021-11-27T15:25:01+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/astroid-git.git/commit/?id=813aab5069f55eebf501ea000a46fc39a09956a8'/>
<id>813aab5069f55eebf501ea000a46fc39a09956a8</id>
<content type='text'>
* Enable for_any_all check
* Upgrade to pylint 2.12 in pre-commit configuration
* Fix new Pylint warnings
* Upgrade the regex for Mixin

Co-authored-by: Pierre Sassoulas &lt;pierre.sassoulas@gmail.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Enable for_any_all check
* Upgrade to pylint 2.12 in pre-commit configuration
* Fix new Pylint warnings
* Upgrade the regex for Mixin

Co-authored-by: Pierre Sassoulas &lt;pierre.sassoulas@gmail.com&gt;</pre>
</div>
</content>
</entry>
</feed>
