[issue12182] pydoc.py integer division problem

2011-05-26 Thread STINNER Victor
STINNER Victor added the comment: Patch applied, thanks for your patch! -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list m

[issue12182] pydoc.py integer division problem

2011-05-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7724b53510c4 by Victor Stinner in branch '2.7': Close #12182: Fix pydoc.HTMLDoc.multicolumn() if Python uses the new (true) http://hg.python.org/cpython/rev/7724b53510c4 -- nosy: +python-dev resolution: -> fixed stage: -> committed/reject

[issue12182] pydoc.py integer division problem

2011-05-25 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> ncoghlan nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue12182] pydoc.py integer division problem

2011-05-25 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- nosy: +petri.lehtinen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue12182] pydoc.py integer division problem

2011-05-25 Thread Ralf W. Grosse-Kunstleve
New submission from Ralf W. Grosse-Kunstleve : The pydoc.HTMLRepr.multicolumn() method fails when using the Python command-line option -Qnew. The attached patch inserts two slashes for floor division. (I think the same change was applied to Python 3 already.) -- components: Library (Li