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 chaica_
Recipients chaica_, flox, rhettinger
Date 2009-12-24.12:07:59
SpamBayes Score 0.0008034768
Marked as misclassified No
Message-id <1261656480.75.0.00460000869923.issue7418@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

Maybe you have some ideas on this patch? I think it could be a nice
feature e.g in my app I need to support every hash algorithms available
so with optparse module it is possible to write something like :
 
        for __hashtype in ('md5', 'sha1',
'sha224','sha256','sha384','sha512'):
            __parser.add_option('--{}'.format(__hashtype), dest='hashtype',
                action='store_const', const='{}'.format(__hashtype),
                help='use the {} hash algorithm type'.format(__hashtype))
        __options, _ = __parser.parse_args()

And it would be better if this tuple could be provided by the hashlib
module itself, making the code more evolutive.
History
Date User Action Args
2009-12-24 12:08:01chaica_setrecipients: + chaica_, rhettinger, flox
2009-12-24 12:08:00chaica_setmessageid: <1261656480.75.0.00460000869923.issue7418@psf.upfronthosting.co.za>
2009-12-24 12:07:59chaica_linkissue7418 messages
2009-12-24 12:07:59chaica_create