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.

Author eric.smith
Recipients eddy, eric.smith, georg.brandl
Date 2010-02-22.13:31:38
SpamBayes Score 0.0001998316
Marked as misclassified No
Message-id <1266845500.89.0.376403856264.issue7928@psf.upfronthosting.co.za>
In-reply-to
Content
I'm not exactly sure what wording to use here.

      element_index: `integer` | `identifier`

is not exactly correct, because it can be a non-identifier (as the example that eddy quotes points out. It's really "any sequence of characters except ']'".

Any ideas on the best way to express that? Maybe taking a clue from string literals, this would be:
      element_index: `integer` | index_string
      index_string: <any source character except "]"> +
History
Date User Action Args
2010-02-22 13:31:41eric.smithsetrecipients: + eric.smith, georg.brandl, eddy
2010-02-22 13:31:40eric.smithsetmessageid: <1266845500.89.0.376403856264.issue7928@psf.upfronthosting.co.za>
2010-02-22 13:31:39eric.smithlinkissue7928 messages
2010-02-22 13:31:38eric.smithcreate