Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-21 Thread Terry Reedy
On 10/21/2016 2:12 PM, Brett Cannon wrote: On Thu, 20 Oct 2016 at 04:48 Skip Montanaro mailto:skip.montan...@gmail.com>> wrote: I've recently run into a problem building the math and cmath modules for 2.7. (I don't rebuild very often, so this problem might have been around for awhi

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-21 Thread Skip Montanaro
On Fri, Oct 21, 2016 at 1:12 PM, Brett Cannon wrote: >> in first cpython, then 2.7 repos I should be up-to-date, correct? > > > Nope, you need to execute the same steps in your 2.7 checkout "repos" == "checkout" in my message. So the hg up -C solved my problem, but I'm still a bit confused (noth

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-21 Thread Brett Cannon
On Thu, 20 Oct 2016 at 04:48 Skip Montanaro wrote: > I've recently run into a problem building the math and cmath modules > for 2.7. (I don't rebuild very often, so this problem might have been > around for awhile.) My hg repos look like this: > > * My cpython repo pulls from https://hg.python.or

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-20 Thread Zachary Ware
On Thu, Oct 20, 2016 at 11:23 AM, Skip Montanaro wrote: > > On Thu, Oct 20, 2016 at 7:35 AM, Victor Stinner > wrote: >> >> Are you on the 2.7 branch or the default branch? >> >> You might try to cleanup your checkout: >> >> hg up -C -r 2.7 >> make distclean >> hg purge # WARNING! it removes *all*

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-20 Thread Skip Montanaro
On Thu, Oct 20, 2016 at 7:35 AM, Victor Stinner wrote: > > Are you on the 2.7 branch or the default branch? > > You might try to cleanup your checkout: > > hg up -C -r 2.7 > make distclean > hg purge # WARNING! it removes *all* files not tracked by Mercurial > ./configure && make > > You should al

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-20 Thread Victor Stinner
Are you on the 2.7 branch or the default branch? You might try to cleanup your checkout: hg up -C -r 2.7 make distclean hg purge # WARNING! it removes *all* files not tracked by Mercurial ./configure && make You should also paste the full error message. Victor 2016-10-20 13:47 GMT+02:00 Skip M

Re: [Python-Dev] Have I got my hg dependencies correct?

2016-10-20 Thread Skip Montanaro
On Thu, Oct 20, 2016 at 6:47 AM, Skip Montanaro wrote: > Is it possible that the fix wasn't propagated to > the 2.7 branch? Or perhaps I've fouled up my hg repo relationships? Either way, I went ahead and opened a ticket: http://bugs.python.org/issue28487 S _

[Python-Dev] Have I got my hg dependencies correct?

2016-10-20 Thread Skip Montanaro
I've recently run into a problem building the math and cmath modules for 2.7. (I don't rebuild very often, so this problem might have been around for awhile.) My hg repos look like this: * My cpython repo pulls from https://hg.python.org/cpython * My 2.7 repo (and other non-tip repos) pulls from