Message82451
The operator precedence table is wrong.
<http://docs.python.org/reference/
expressions.html#summary>
shows "in"/"not in" having less priority than
comparisons like "==", but that's not true:
py> 2 in (1,2) == True
False
The .rst file is wrong, as well as all the
generated .html files since version 2.1 at least.
But the original Latex source lists them in the
same group.
Looks like the latex->html and latex->rst tools
both had the same problem with this kind of
table construct.
The attached patch is based on the ref5.tex file
included in Python 2.5 |
|
Date |
User |
Action |
Args |
2009-02-19 03:51:08 | ggenellina | set | recipients:
+ ggenellina, georg.brandl |
2009-02-19 03:51:08 | ggenellina | set | messageid: <1235015468.16.0.2806325305.issue5310@psf.upfronthosting.co.za> |
2009-02-19 03:50:17 | ggenellina | link | issue5310 messages |
2009-02-19 03:50:16 | ggenellina | create | |
|