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 lukasz.langa
Recipients BreamoreBoy, aioryi, brett.cannon, lukasz.langa, michael.foord
Date 2010-07-25.23:04:16
SpamBayes Score 0.06789302
Marked as misclassified No
Message-id <1280099060.8.0.660236107648.issue7113@psf.upfronthosting.co.za>
In-reply-to
Content
In msg111399 I remarked the new itertools dependency. It seems it is in fact problematic because when building Python from scratch `setup.py` which is used to build C extensions is using configparser. And one of the C-only modules is itertools :)

Attached a new patch that doesn't include itertools dependencies. The only difference with the last one is:

96d95
< import itertools
549,550c548,550
<         all_sections = itertools.chain([self._defaults],
<                                        self._sections.values()) 
---
>         all_sections = [self._defaults]
>         all_sections.extend(self._sections.values()) 
>
History
Date User Action Args
2010-07-25 23:04:21lukasz.langasetrecipients: + lukasz.langa, brett.cannon, aioryi, michael.foord, BreamoreBoy
2010-07-25 23:04:20lukasz.langasetmessageid: <1280099060.8.0.660236107648.issue7113@psf.upfronthosting.co.za>
2010-07-25 23:04:18lukasz.langalinkissue7113 messages
2010-07-25 23:04:18lukasz.langacreate