[issue8525] Small enhancement to help()

2010-11-22 Thread Éric Araujo
Éric Araujo added the comment: New features can only go into 3.2, so you have to test with an updated checkout of the Subversion branch named py3k. See the link I have in a previous message. (P.S. Would you be so kind as to edit quoted text out of your replies? It’s unnecessary noise. Than

[issue8525] Small enhancement to help()

2010-11-22 Thread Rob Cliffe
Rob Cliffe added the comment: I would not be at all surprised if my patch could be simplified (in fact I'd be surprised if it couldn't). However, I did try out your version on Python 2.5 specifically, and it did not work for me. Trying it out on help(Exception), the relevant members of object

[issue8525] Small enhancement to help()

2010-11-22 Thread Rob Cliffe
Rob Cliffe added the comment: Thanks for your work. Glad if I have made a contribution to Python, however small. Rob Cliffe On 22/11/2010 00:26, Éric Araujo wrote: > Éric Araujo added the comment: > > Thank you. I uploaded your patch to Rietveld and reviewed it: > http://codereview.appspot

[issue8525] Small enhancement to help()

2010-11-21 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The following passes tests in elp_8525.patch, but is much simpler: === --- Lib/pydoc.py(revision 86600) +++ Lib/pydoc.py(working copy) @@ -1139,6 +1139,15 @@

[issue8525] Small enhancement to help()

2010-11-21 Thread Éric Araujo
Éric Araujo added the comment: Thank you. I uploaded your patch to Rietveld and reviewed it: http://codereview.appspot.com/3169042/ -- ___ Python tracker ___ __

[issue8525] Small enhancement to help()

2010-11-21 Thread Rodolpho Eckhardt
Rodolpho Eckhardt added the comment: Migrated the patch to the 3.x trunk and added three tests. -- keywords: +patch nosy: +Rodolpho.Eckhardt, henriquebastos Added file: http://bugs.python.org/file19748/help_8525.patch ___ Python tracker

[issue8525] Small enhancement to help()

2010-04-30 Thread Brian Curtin
Brian Curtin added the comment: Minor correction to the last comment: 3.2 is not in beta nor feature freeze. -- nosy: +brian.curtin ___ Python tracker ___ ___

[issue8525] Small enhancement to help()

2010-04-30 Thread Éric Araujo
Éric Araujo added the comment: Thanks for your work, Rob. To get reviews and comments, you’ll need to submit a patch (a diff) instead of the whole file. This makes it easier to see your changes than looking for a special comment :) This short doc should contain all the information you’ll need

[issue8525] Small enhancement to help()

2010-04-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: 2.5 is frozen. 2.6 and 3.1 are in bug-fix mode only, and 2.7 is in beta so new features are unlikely there. So I recommend doing a patch against 3.1 or even the 3.2 trunk. And of course, make sure this proposal makes sense for 3.x. -- nosy: +tjreedy v

[issue8525] Small enhancement to help()

2010-04-24 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue8525] Small enhancement to help()

2010-04-24 Thread Ron Adam
Changes by Ron Adam : -- nosy: +ron_adam ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue8525] Small enhancement to help()

2010-04-24 Thread Rob Cliffe
New submission from Rob Cliffe : help() on an exception class lists the method resolution order, which is in effect the class inheritance hierarchy. E.g. help(ArithmeticError) lists ArithmeticError, StandardError, Exception, BaseException, __builtin__.object. It struck me it would help to fi