Explorar el Código

Return empty symbol dictionary instead of None.

tags/v1.0^2
Ben Kurtovic hace 10 años
padre
commit
bd7ec4552a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      bitshift/parser/python.py

+ 1
- 1
bitshift/parser/python.py Ver fichero

@@ -210,7 +210,7 @@ def parse_py(codelet):
tree = ast.parse("\n".join(strip_encoding(codelet.code.splitlines())))
except SyntaxError:
## TODO: add some logging here?
return
return {}

walker = _TreeWalker()
walker.visit(tree)


Cargando…
Cancelar
Guardar