Skip to content

Commit

Permalink
Fix some typoes in the Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Feb 27, 2022
1 parent b6d1710 commit e6dc5ef
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Release date: TBA

Closes PyCQA/pylint#4826

* Fixed builtin inferenence on `property` calls not calling the `postinit` of the new node, which
* Fixed builtin inference on `property` calls not calling the `postinit` of the new node, which
resulted in instance arguments missing on these nodes.

* Fixed a crash on ``Super.getattr`` when the attribute was previously uninferable due to a cache
Expand Down Expand Up @@ -128,7 +128,7 @@ Release date: 2021-12-31

* Fix typing and update explanation for ``Arguments.args`` being ``None``.

* Fix crash if a variable named ``type`` is subscripted in a generator expression.
* Fix crash if a variable named ``type`` is subscribed in a generator expression.

This comment has been minimized.

Copy link
@jacobtylerwalls

jacobtylerwalls Mar 1, 2022

Member

Ah, this was my bad, but now it's a bit confusing, as I don't know what subscribed means in this context. Maybe "accessed with an index operator []")?


Closes PyCQA/pylint#5461

Expand Down Expand Up @@ -409,11 +409,11 @@ Release date: 2021-08-03

* Added support to infer return type of ``typing.cast()``

* Fix variable lookup's handling of exclusive statements
* Fix variable lookup handling of exclusive statements

Closes PyCQA/pylint#3711

* Fix variable lookup's handling of function parameters
* Fix variable lookup handling of function parameters

Closes PyCQA/astroid#180

Expand Down Expand Up @@ -453,7 +453,7 @@ Release date: 2021-07-19

* Added ``If.is_sys_guard`` and ``If.is_typing_guard`` helper methods

* Fix a bad inferenece type for yield values inside of a derived class.
* Fix a bad inference type for yield values inside of a derived class.

Closes PyCQA/astroid#1090

Expand Down Expand Up @@ -1488,7 +1488,7 @@ Release date: 2018-07-15

* Fix missing __module__ and __qualname__ from class definition locals

Close PYCQA/pylint#1753
Close PyCQA/pylint#1753

* Fix a crash when __annotations__ access a parent's __init__ that does not have arguments

Expand Down Expand Up @@ -1575,7 +1575,7 @@ Release date: 2017-12-15

* Add brain tip for attrs library to prevent unsupported-assignment-operation false positives

Close PYCQA/pylint#1698
Close PyCQA/pylint#1698

* file_stream was removed, since it was deprecated for three releases

Expand Down Expand Up @@ -1993,7 +1993,7 @@ Release date: 2015-11-29
* Add basic support for understanding context managers.

Currently, there's no way to understand whatever __enter__ returns in a
context manager and what it is binded using the ``as`` keyword. With these changes,
context manager and what it is bound using the ``as`` keyword. With these changes,
we can understand ``bar`` in ``with foo() as bar``, which will be the result of __enter__.

* Add a new type of node, called *inference objects*. Inference objects are similar with
Expand Down

0 comments on commit e6dc5ef

Please sign in to comment.