Parcourir la source

Python parser bugfix, again.

tags/v1.0^2
Ben Kurtovic il y a 10 ans
Parent
révision
33c942402f
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      bitshift/parser/python.py

+ 3
- 1
bitshift/parser/python.py Voir le fichier

@@ -111,8 +111,10 @@ class _CachedWalker(ast.NodeVisitor):

if isinstance(node.func, ast.Name):
name = node.func.id
else:
elif isinstance(node.func, ast.Attr):
name = node.func.attr
else: # Dynamically selected functions, etc:
return

if not self.accum['functions'].has_key(name):
self.accum['functions'][name] = {'assignments': [], 'uses': []}


Chargement…
Annuler
Enregistrer