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 LambertDW, eric.smith, ezio.melotti, gvanrossum, mark.dickinson, ncoghlan, orsenthil, pitrou, terry.reedy
Date 2009-03-14.22:05:22
SpamBayes Score 0.000828259
Marked as misclassified No
Message-id <1237068324.73.0.735753400161.issue5237@psf.upfronthosting.co.za>
In-reply-to
Content
I implemented this one:
field_name        ::=  (identifier | integer | ) ("." attribute_name |
"[" element_index "]")*

Which I would have written as:
field_name        ::=  (identifier | integer)? ("." attribute_name |
"[" element_index "]")*

Not that it matters, of course.

And the proviso is correct: blanks and integers cannot be mixed in the
same string.

Thanks for looking at this!
History
Date User Action Args
2009-03-14 22:05:24eric.smithsetrecipients: + eric.smith, gvanrossum, terry.reedy, mark.dickinson, ncoghlan, orsenthil, pitrou, LambertDW, ezio.melotti
2009-03-14 22:05:24eric.smithsetmessageid: <1237068324.73.0.735753400161.issue5237@psf.upfronthosting.co.za>
2009-03-14 22:05:22eric.smithlinkissue5237 messages
2009-03-14 22:05:22eric.smithcreate