Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ply/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Author: David Beazley (dave@dabeaz.com)
# https://github.com/dabeaz/ply

__version__ = '2022.10.27'
__version__ = "2022.10.27"
2 changes: 2 additions & 0 deletions pseudoyacc.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def p_comment(p):

# == Conditional selection


def p_selection(p):
"""selection : if
| case"""
Expand All @@ -77,6 +78,7 @@ def p_selection(p):

# If...else...endif statements


def p_if(p):
"""if : if_start
| then
Expand Down