Message 83605 - Python tracker
Message83605
| 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:24 | eric.smith | set | recipients: + eric.smith, gvanrossum, terry.reedy, mark.dickinson, ncoghlan, orsenthil, pitrou, LambertDW, ezio.melotti |
| 2009-03-14 22:05:24 | eric.smith | set | messageid: <1237068324.73.0.735753400161.issue5237@psf.upfronthosting.co.za> |
| 2009-03-14 22:05:22 | eric.smith | link | issue5237 messages |
| 2009-03-14 22:05:22 | eric.smith | create | |