Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.012 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'broken': 0.04; 'configure': 0.05; 'repository': 0.05; 'subject:Python': 0.06; 'agree,': 0.09; 'window.': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'windows': 0.15; 'fine.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:broken': 0.16; 'unix,': 0.16; 'url:all': 0.16; 'url:buildbot': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'commit': 0.19; 'feb': 0.22; 'issue.': 0.22; 'cc:addr:python.org': 0.22; 'fine': 0.24; 'people,': 0.24; 'cc:2**0': 0.24; 'source': 0.25; 'header:In-Reply-To:1': 0.27; 'fixed': 0.29; '[1]': 0.29; 'am,': 0.29; 'errors': 0.30; 'said,': 0.30; 'message-id:@mail.gmail.com': 0.30; '(on': 0.31; "d'aprano": 0.31; 'steven': 0.31; 'url:category': 0.31; 'anyone': 0.31; 'another': 0.32; 'linux': 0.33; 'worked': 0.33; 'url:python': 0.33; 'mac': 0.33; 'subject:the': 0.34; 'could': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'building': 0.35; 'there': 0.35; 'version': 0.36; 'doing': 0.36; "didn't": 0.36; 'subject:?': 0.36; 'url:org': 0.36; 'skip:- 10': 0.38; 'though,': 0.39; 'url:3': 0.61; "you're": 0.61; 'show': 0.63; 'confirm': 0.64; 'latest': 0.67; 'url:x': 0.81; './configure': 0.84; '3.4': 0.84; '9:45': 0.84; 'own)': 0.84; 'python-dev': 0.84; 'subject:Latest': 0.84; 'subject:source': 0.84; 'ware': 0.91; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=FOCxhAFFoIJ506jfwc8g3lETur0O7KJ3egAN0Eon5Vw=; b=Y68DYADQsZTS+mxwU550wv+xek+6IqyrqdY7fXK7T2BcjDfzGx3gYYc1kPZRQRyDXD nZXxtOhgAj2lALXicRotPQt84PzblwWkSyTMjB3+Pc0KUBT6vyFYA2R/KnbPJ0SDS8v9 2YKvz4MnXJ9fOGu38x1MrHN5pti8V0bwb2xJ0sR4b3h40L+eb8oP8idTAGkif9/qFlza FKW9FlRN/Idsjswzv7Hhl5WOJyjspgdTPsfLx5nEfpp+GXZin2T3BPsCuw91IGPiwbHg eL5Lg0qD4yAO3U8+tYOspIbCvugBSM+dmY9/uqqsPD1NOBBab0Y/ul9yU88AIvme1NMI ytNA== MIME-Version: 1.0 X-Received: by 10.66.26.176 with SMTP id m16mr14913353pag.142.1391532597937; Tue, 04 Feb 2014 08:49:57 -0800 (PST) In-Reply-To: References: <52f10b2a$0$29972$c3e8da3$5496439d@news.astraweb.com> Date: Wed, 5 Feb 2014 03:49:57 +1100 Subject: Re: Latest Python 3.4 in the source repo is broken? From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 28 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1391532607 news.xs4all.nl 2905 [2001:888:2000:d::a6]:47515 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:65437 On Wed, Feb 5, 2014 at 3:02 AM, Zachary Ware wrote: > On Tue, Feb 4, 2014 at 9:45 AM, Steven D'Aprano > wrote: >> Before I bother Python-Dev with this, can anyone else confirm that >> building Python 3.4 from source using the latest version in the source >> repository fails? >> >> # Build Python (on Unix, sorry Windows and Mac people, you're on your own) >> ./configure --with-pydebug && make -j2 >> > The buildbots[1] don't seem to agree, and it builds fine for me on > Windows. In order of destructiveness, try these: > > [1] http://buildbot.python.org/all/waterfall?category=3.x.stable Are there any buildbots that configure --with-pydebug? This could be a debug-only issue. That said, though, I just did a build without -j2 (on Linux - Debian Wheezy amd64) and it worked fine. Doing another one with -j2 didn't show up any errors either, but if it is a -j problem, then as Zachary says, it could be a race. What commit hash were you building from? It might have been broken and then fixed shortly, and you got into that tiny window. ChrisA