Message96854
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. |
|
Date |
User |
Action |
Args |
2009-12-24 12:08:01 | chaica_ | set | recipients:
+ chaica_, rhettinger, flox |
2009-12-24 12:08:00 | chaica_ | set | messageid: <1261656480.75.0.00460000869923.issue7418@psf.upfronthosting.co.za> |
2009-12-24 12:07:59 | chaica_ | link | issue7418 messages |
2009-12-24 12:07:59 | chaica_ | create | |
|