Skip to content
Snippets Groups Projects
Commit 5cc50abb authored by Claudiu Popa's avatar Claudiu Popa
Browse files

Prepare 2.0.2

parent f0044dd8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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?
============================
Loading
Loading
Loading
Loading
@@ -21,7 +21,7 @@ distname = 'astroid'
 
modname = 'astroid'
 
version = '2.0.1'
version = '2.0.2'
numversion = tuple(int(elem) for elem in version.split('.') if elem.isdigit())
 
extras_require = {}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment