Skip to content

Commit

Permalink
Prepare 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PCManticore committed Aug 1, 2018
1 parent f0044dd commit 5cc50ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
13 changes: 12 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,23 @@ astroid's ChangeLog
What's New in astroid 2.0.2?
============================

Release Date: |TBA|
Release Date: 2018-08-01

* Stop repeat inference attempt causing a RuntimeError in Python3.7

Close PyCQA/pylint#2317

* infer_call_result can raise InferenceError so make sure to handle that for the call sites
where it is used

infer_call_result started recently to raise InferenceError for objects for which it
could not find any returns. Previously it was silently raising a StopIteration,
which was especially leaking when calling builtin methods.
Since it is after all an inference method, it is expected that it
could raise an InferenceError rather than returning nothing.

Close PyCQA/pylint#2350


What's New in astroid 2.0.1?
============================
Expand Down
2 changes: 1 addition & 1 deletion astroid/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

modname = 'astroid'

version = '2.0.1'
version = '2.0.2'
numversion = tuple(int(elem) for elem in version.split('.') if elem.isdigit())

extras_require = {}
Expand Down

0 comments on commit 5cc50ab

Please sign in to comment.