[Python-checkins] r63742 - python/trunk/setup.py

Nick Coghlan ncoghlan at gmail.com
Tue May 27 11:32:15 CEST 2008


gregory.p.smith wrote:
> +        def gen_db_minor_ver_nums(major):
> +            if major == 4:
> +                for x in range(max_db_ver[1]+1):
> +                    if allow_db_ver((4, x)):
> +                        yield x
> +            elif major == 3:
> +                for x in (3,):
> +                    if allow_db_ver((3, x)):
> +                        yield x
> +            else:
> +                raise ValueError("unknown major BerkeleyDB version", major)
> +

Do we actually only support 3.3, or was that meant to be a range(4) or 
range(10) or some such thing in the 3.x minor versions check?

Cheers,
Nick.

-- 
Nick Coghlan   |   ncoghlan at gmail.com   |   Brisbane, Australia
---------------------------------------------------------------
             http://www.boredomandlaziness.org


More information about the Python-checkins mailing list