This website works better with JavaScript.
Home
Help
Sign In
ben
/
bitshift
mirror of
https://github.com/earwig/bitshift
Watch
1
Star
1
Fork
0
Code
Releases
1
Activity
Browse Source
Return empty symbol dictionary instead of None.
tags/v1.0^2
Ben Kurtovic
10 years ago
parent
f38ba20780
commit
bd7ec4552a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
bitshift/parser/python.py
+ 1
- 1
bitshift/parser/python.py
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save