[issue7259] Documentation update for operator module

2009-11-03 Thread Georg Brandl
Georg Brandl added the comment: Thanks, applied in r76105. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue7259] Documentation update for operator module

2009-11-03 Thread Gabriel Genellina
New submission from Gabriel Genellina : 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,