This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Notation
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, mythrix
Priority: normal Keywords:

Created on 2005-04-30 14:01 by mythrix, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25183 - (view) Author: Mythril (mythrix) Date: 2005-04-30 14:01
In Notation, it says the BNF form used is:
name:           lc_letter (lc_letter | "_")*
lc_letter:      "a"..."z"

But in the documentation, it is:
identifier	::=	(letter|"_") (letter | digit | "_")*	
letter	::=	lowercase | uppercase

(ie, ::=, and not :)
msg25184 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-06-02 13:53
Logged In: YES 
user_id=11375

The notation section was using a different LaTeX macro from the other 
grammar rules; I've fixed this on the HEAD and 2.4-maint branches.  
Thanks for reporting this error!
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41928
2005-04-30 14:01:32mythrixcreate