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 ggenellina
Recipients georg.brandl, ggenellina
Date 2009-11-04.05:23:33
SpamBayes Score 0.033450305
Marked as misclassified No
Message-id <1257312219.3.0.741545743577.issue7259@psf.upfronthosting.co.za>
In-reply-to
Content
This patch fixes some issues with the documentation of the operator 
module:

- docstrings for all augmented assignments incorrectly stated, e.g., 
`operator.iadd(a,b)` is the same as `a += b`. The main documentation 
shows `a = operator.iadd(a,b)` instead, and that's correct. This patch 
updates all affected docstrings in the operator.c module.

- Added +obj to the table of operators.

- Replaced getslice/setslice/delslice examples (deprecated) with their 
getitem/setitem/delitem equivalents. This change unfortunately made the 
table some characters wider.

Originally reported by Juanjo Conti:
http://permalink.gmane.org/gmane.org.user-groups.python.argentina/28596
History
Date User Action Args
2009-11-04 05:23:39ggenellinasetrecipients: + ggenellina, georg.brandl
2009-11-04 05:23:39ggenellinasetmessageid: <1257312219.3.0.741545743577.issue7259@psf.upfronthosting.co.za>
2009-11-04 05:23:36ggenellinalinkissue7259 messages
2009-11-04 05:23:36ggenellinacreate