Hi,
I've just re-built the latest Python 3.6 from the repo using this:
PYTHONHOME=/usr/local ./configure --with-pydebug && make -s -j2
and I'm getting:
Failed to build these modules:
select
which means I can't run the test suite:
[steve@ando cpython]$ ./python -m test -j3
Traceback (most re
On Sun, Aug 7, 2016 at 7:58 PM, Steven D'Aprano wrote:
>
> Is it just me? Any suggestions?
I suspect local to your end. Try
$ make distclean # and try again?
On Mac OSX Yosemite, I tried to build on the tip and didn't encounter
this problem.
$ hg pull && hg update && hg log -l 1 | head -n 2
p
On Aug 7, 2016, at 23:51, Senthil Kumaran wrote:
>
> On Sun, Aug 7, 2016 at 7:58 PM, Steven D'Aprano wrote:
>>
>> Is it just me? Any suggestions?
>
> I suspect local to your end. Try
>
> $ make distclean # and try again?
Also, try without setting PYTHONHOME. I'm not sure what you're trying
On Mon, Aug 08, 2016 at 12:17:21AM -0400, Ned Deily wrote:
> On Aug 7, 2016, at 23:51, Senthil Kumaran wrote:
> >
> > On Sun, Aug 7, 2016 at 7:58 PM, Steven D'Aprano wrote:
> >>
> >> Is it just me? Any suggestions?
> >
> > I suspect local to your end. Try
> >
> > $ make distclean # and try a