Message161637
| Author |
todddeluca |
| Recipients |
Sharif.Nassar, alexis, eric.araujo, tarek, todddeluca, tshepang |
| Date |
2012年05月26日.02:05:38 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<CAJRoPYaLDcMMW=D=5Eb5eHBJEhAj6e58z28HKfyUz4fufP8Lrw@mail.gmail.com> |
| In-reply-to |
<1337997550.25.0.425785667651.issue14858@psf.upfronthosting.co.za> |
| Content |
That was my first thought, but if python2.5 compatibility is important, I
don't think using the start parameter is an option.
http://docs.python.org/library/functions.html#enumerate
"Changed in version 2.6: The start parameter was added."
Regards,
Todd
On Fri, May 25, 2012 at 9:59 PM, Sharif Nassar <report@bugs.python.org>wrote:
>
> Sharif Nassar <mrwacky42@gmail.com> added the comment:
>
> Even better:
>
> diff -r 747eec42e7ae distutils2/create.py
> --- a/distutils2/create.py Mon May 21 17:01:44 2012 -0400
> +++ b/distutils2/create.py Fri May 25 19:04:22 2012 -0700
> @@ -674,7 +674,7 @@
> %s
>
> Status''' % '\n'.join('%s - %s' % (i, maturity_name(n))
> - for i, n in enumerate(PROJECT_MATURITY))
> + for i, n in enumerate(PROJECT_MATURITY,
> 1 ))
> while True:
> choice = ask(dedent(maturity_question), required=False)
>
> ----------
> nosy: +Sharif.Nassar
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue14858>
> _______________________________________
> |
|