Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pycqa/pylint
1 result
Show changes
Commits on Source (2)
Loading
Loading
@@ -2,6 +2,21 @@
Pylint's ChangeLog
------------------
 
What's New in Pylint 1.7.2?
===========================
Release date: 2017-06-03
* enum34 dependency is forced to be at least version 1.1.3. Fixes spurious
bug related to enum classes being falsy in boolean context, which caused
_Inconsistent Hierarchy_ `RuntimeError` in `singledispatch` module.
See links below for details:
- http://bugs.python.org/issue26748
- https://bitbucket.org/ambv/singledispatch/issues/8/inconsistent-hierarchy-with-enum
- https://bitbucket.org/stoneleaf/enum34/commits/da50803651ab644e6fce66ebc85562f1117c344b
What's New in Pylint 1.7.1?
=========================
 
Loading
Loading
Loading
Loading
@@ -18,7 +18,7 @@ from setuptools import __version__ as setuptools_version
 
modname = distname = 'pylint'
 
numversion = (1, 7, 1)
numversion = (1, 7, 2)
version = '.'.join([str(num) for num in numversion])
 
install_requires = [
Loading
Loading
Loading
Loading
@@ -1006,7 +1006,17 @@ class FormatChecker(BaseTokenChecker):
return i + 1
 
unsplit_ends = {
'\v', '\x0b', '\f', '\x0c', '\x1c', '\x1d', '\x1e', '\x85', '\u2028', '\u2029'}
u'\v',
u'\x0b',
u'\f',
u'\x0c',
u'\x1c',
u'\x1d',
u'\x1e',
u'\x85',
u'\u2028',
u'\u2029'
}
unsplit = []
for line in lines.splitlines(True):
if line[-1] in unsplit_ends:
Loading
Loading