[issue10378] Typo in results of help(divmod)

2010-11-09 Thread Richard Fuhr
Richard Fuhr added the comment: OK, thanks for the clarification. I am new to Python. Sent from my iPod On Nov 9, 2010, at 3:54 PM, Andreas Stührk wrote: > > Andreas Stührk added the comment: > > __builtin__ is the correct name for the module (see > http://docs.python.org/library/__buil

[issue10378] Typo in results of help(divmod)

2010-11-09 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue10378] Typo in results of help(divmod)

2010-11-09 Thread Andreas Stührk
Andreas Stührk added the comment: __builtin__ is the correct name for the module (see http://docs.python.org/library/__builtin__.html, especially the note at the end which is the cause of the confusion), hence this is not a bug. -- nosy: +Trundle _

[issue10378] Typo in results of help(divmod)

2010-11-09 Thread Richard Fuhr
Richard Fuhr added the comment: I had a typo in my own bug report that was reporting a typo; what I intended to say was the following ( the q should not have been there at the end ) When running Python 2.7 if you invoke help(divmod) the first line of the resulting help displays Help on bui

[issue10378] Typo in results of help(divmod)

2010-11-09 Thread Richard Fuhr
New submission from Richard Fuhr : When running Python 2.7 if you invoke help(divmod) the first line of the resulting help displays Help on built-in function divmod in module __builtin__: but I believe that the name of the module is __builtins__ so the line should say Help on built-in func