summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-03-28 17:43:10 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-03-28 17:43:10 +0200
commite6e2bbd25f3ff1ab400123c9c383348ab1a068fc (patch)
tree56e46e80aaad38dd3df1e26af59b6692bf747685
parentc6960897779e3f757ae40cebd6ad6b4ac3dafafe (diff)
downloadastroid-e6e2bbd25f3ff1ab400123c9c383348ab1a068fc.tar.gz
Some style fixes.
-rw-r--r--astroid/brain/py2stdlib.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/astroid/brain/py2stdlib.py b/astroid/brain/py2stdlib.py
index 2bfcbcd..7bf7b30 100644
--- a/astroid/brain/py2stdlib.py
+++ b/astroid/brain/py2stdlib.py
@@ -7,7 +7,6 @@ Currently help understanding of :
"""
import sys
-from functools import partial
from textwrap import dedent
from astroid import (
@@ -74,7 +73,7 @@ def infer_func_form(node, base_type, context=None, enum=False):
raise AttributeError
if not attributes:
raise AttributeError
- except (AttributeError, exceptions.InferenceError) as exc:
+ except (AttributeError, exceptions.InferenceError):
raise UseInferenceDefault()
# we want to return a Class node instance with proper attributes set
class_node = nodes.Class(name, 'docstring')
@@ -115,7 +114,7 @@ class %(name)s(object):
'''
algorithms = ('md5', 'sha1', 'sha224', 'sha256', 'sha384', 'sha512')
classes = "".join(
- template % {'name': hashfunc, 'digest': 'b""' if PY3K else '""'}
+ template % {'name': hashfunc, 'digest': 'b""' if PY3K else '""'}
for hashfunc in algorithms)
return AstroidBuilder(MANAGER).string_build(classes)
@@ -240,9 +239,9 @@ class Popen(object):
def looks_like_namedtuple(node):
func = node.func
- if type(func) is nodes.Getattr:
+ if isinstance(func, nodes.Getattr):
return func.attrname == 'namedtuple'
- if type(func) is nodes.Name:
+ if isinstance(func, nodes.Name):
return func.name == 'namedtuple'
return False