@@ -12,7 +12,7 @@ Release date: TBA
12
12
13
13
Closes PyCQA/pylint#4826
14
14
15
- * Fixed builtin inferenence on `property` calls not calling the `postinit` of the new node, which
15
+ * Fixed builtin inference on `property` calls not calling the `postinit` of the new node, which
16
16
resulted in instance arguments missing on these nodes.
17
17
18
18
* Fixed a crash on ``Super.getattr`` when the attribute was previously uninferable due to a cache
@@ -128,7 +128,7 @@ Release date: 2021-12-31
128
128
129
129
* Fix typing and update explanation for ``Arguments.args`` being ``None``.
130
130
131
- * Fix crash if a variable named ``type`` is subscripted in a generator expression.
131
+ * Fix crash if a variable named ``type`` is subscribed in a generator expression.
132
132
133
133
Closes PyCQA/pylint#5461
134
134
@@ -409,11 +409,11 @@ Release date: 2021-08-03
409
409
410
410
* Added support to infer return type of ``typing.cast()``
411
411
412
- * Fix variable lookup's handling of exclusive statements
412
+ * Fix variable lookup handling of exclusive statements
413
413
414
414
Closes PyCQA/pylint#3711
415
415
416
- * Fix variable lookup's handling of function parameters
416
+ * Fix variable lookup handling of function parameters
417
417
418
418
Closes PyCQA/astroid#180
419
419
@@ -453,7 +453,7 @@ Release date: 2021-07-19
453
453
454
454
* Added ``If.is_sys_guard`` and ``If.is_typing_guard`` helper methods
455
455
456
- * Fix a bad inferenece type for yield values inside of a derived class.
456
+ * Fix a bad inference type for yield values inside of a derived class.
457
457
458
458
Closes PyCQA/astroid#1090
459
459
@@ -1488,7 +1488,7 @@ Release date: 2018-07-15
1488
1488
1489
1489
* Fix missing __module__ and __qualname__ from class definition locals
1490
1490
1491
- Close PYCQA /pylint#1753
1491
+ Close PyCQA /pylint#1753
1492
1492
1493
1493
* Fix a crash when __annotations__ access a parent's __init__ that does not have arguments
1494
1494
@@ -1575,7 +1575,7 @@ Release date: 2017-12-15
1575
1575
1576
1576
* Add brain tip for attrs library to prevent unsupported-assignment-operation false positives
1577
1577
1578
- Close PYCQA /pylint#1698
1578
+ Close PyCQA /pylint#1698
1579
1579
1580
1580
* file_stream was removed, since it was deprecated for three releases
1581
1581
@@ -1993,7 +1993,7 @@ Release date: 2015-11-29
1993
1993
* Add basic support for understanding context managers.
1994
1994
1995
1995
Currently, there's no way to understand whatever __enter__ returns in a
1996
- context manager and what it is binded using the ``as`` keyword. With these changes,
1996
+ context manager and what it is bound using the ``as`` keyword. With these changes,
1997
1997
we can understand ``bar`` in ``with foo() as bar``, which will be the result of __enter__.
1998
1998
1999
1999
* Add a new type of node, called *inference objects*. Inference objects are similar with
0 commit comments