Document/correct hide_internal and store_locals

This commit is contained in:
rocky
2016-07-12 12:07:48 -04:00
parent b99f196d18
commit bc86b73cf0
4 changed files with 28 additions and 4 deletions

View File

@@ -569,7 +569,7 @@ class Python3Parser(PythonParser):
class Python32Parser(Python3Parser):
def p_32(self, args):
"""
# Store locals is only in Python 3.2 and 3.3
# Store locals is only in Python 3.0 to 3.3
stmt ::= store_locals
store_locals ::= LOAD_FAST STORE_LOCALS
"""
@@ -577,7 +577,7 @@ class Python32Parser(Python3Parser):
class Python33Parser(Python3Parser):
def p_33(self, args):
"""
# Store locals is only in Python 3.2 and 3.3
# Store locals is only in Python 3.0 to 3.3
stmt ::= store_locals
store_locals ::= LOAD_FAST STORE_LOCALS