Skip to content

Commit

Permalink
Fix analyzing friends.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dlorch committed Jul 9, 2017
1 parent 3705522 commit 3ac3668
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -144,7 +144,7 @@ Implementation Status
+-------------+---------+-----------------------------------------------------+
| Parser | 98% | Very good coverage (except handling of encodings) |
+-------------+---------+-----------------------------------------------------+
| Analyzer | 6% | Analyzing a handful of example programs. |
| Analyzer | 8% | Analyzing a handful of example programs. |
+-------------+---------+-----------------------------------------------------+
| Interpreter | 3% | Interpreting very few example programs. |
+-------------+---------+-----------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion pycep/analyzer.py
Expand Up @@ -461,7 +461,7 @@ def visit_for_stmt(self, values, ctx):
node.body = self.visit(values[5], ctx)

# TODO: 'else' ':' suite
node.orelse = None
node.orelse = []

return node

Expand Down

0 comments on commit 3ac3668

Please sign in to comment.