[Python-Dev] Workflow PEP proposals are now closed

2015-02-02 Thread Brett Cannon
The PEPs under consideration are PEPs 474 and 462 from Nick Coghlan to use Kallithea and do self-hosting, and PEP 481 from Donald Stufft that proposes using GitHub. A

Re: [Python-Dev] Workflow improvement PEPs 474 & 462 updated

2015-02-02 Thread Pierre-Yves David
On 02/02/2015 01:11 AM, Nick Coghlan wrote: On 2 Feb 2015 04:56, "francis" mailto:franci...@email.de>> wrote: > > Hi Nick, > > On 02/01/2015 08:46 AM, Nick Coghlan wrote: > [...] > > The updates to PEP 462, which covers proposed changes to the main > > CPython workflow, were more signif

Re: [Python-Dev] Workflow improvement PEPs 474 & 462 updated

2015-02-02 Thread Brett Cannon
On Mon Feb 02 2015 at 9:52:29 AM Pierre-Yves David < pierre-yves.da...@ens-lyon.org> wrote: > > > On 02/02/2015 01:11 AM, Nick Coghlan wrote: > > > > On 2 Feb 2015 04:56, "francis" > > wrote: > [SNIP] > > > PS: Should this be forwarded to python-workflow or is that oth

Re: [Python-Dev] Workflow PEP proposals are now closed

2015-02-02 Thread Donald Stufft
> On Feb 2, 2015, at 9:35 AM, Brett Cannon wrote: > > The PEPs under consideration are PEPs 474 > and 462 > from Nick Coghlan to use > Kallithea and do self-hosting, and PEP 481 >

Re: [Python-Dev] Workflow PEP proposals are now closed

2015-02-02 Thread Brett Cannon
On Mon Feb 02 2015 at 10:00:30 AM Donald Stufft wrote: > > On Feb 2, 2015, at 9:35 AM, Brett Cannon wrote: > > The PEPs under consideration are PEPs 474 > and 462 > from Nick Coghlan to use > Kallithea and do

Re: [Python-Dev] Workflow PEP proposals are now closed

2015-02-02 Thread Antoine Pitrou
Hi, What does "closed" mean in this context? Regards Antoine. On Mon, 02 Feb 2015 14:35:47 + Brett Cannon wrote: > The PEPs under consideration are PEPs 474 > and 462 > from Nick Coghlan to use > Kal

Re: [Python-Dev] cpython (merge 3.4 -> default): Merge 3.4 (asyncio)

2015-02-02 Thread Antoine Pitrou
On Mon, 02 Feb 2015 17:38:10 + victor.stinner wrote: > https://hg.python.org/cpython/rev/42b376c8cf60 > changeset: 94465:42b376c8cf60 > parent: 94463:0b3bc51341aa > parent: 94464:2cd6621a9fbc > user:Victor Stinner > date:Mon Feb 02 18:36:59 2015 +0100 > summary: >

Re: [Python-Dev] cpython (merge 3.4 -> default): Merge 3.4 (asyncio)

2015-02-02 Thread Victor Stinner
Hi, The current workflow of asyncio is to first commit changes in the external tulip project, then *copy* files to Python 3.4; to finish with a merge from Python 3.4 into Python 3.5. To be complete, I also merge tulip into trollius, but that's unrelated to your question :-) To simplify the workfl

Re: [Python-Dev] Workflow PEP proposals are now closed

2015-02-02 Thread Brett Cannon
On Mon Feb 02 2015 at 2:40:21 PM Antoine Pitrou wrote: > > Hi, > > What does "closed" mean in this context? > No new PEPs on this topic will be taken under consideration, so submissions are now "closed" to new participants. -Brett > > Regards > > Antoine. > > > > On Mon, 02 Feb 2015 14:35:47

[Python-Dev] PEP 475 accepted

2015-02-02 Thread Antoine Pitrou
Hello, I'm now accepting PEP 475 - "Retry system calls failing with EINTR". You can read it at https://www.python.org/dev/peps/pep-0475/ The implementation is more or less ready at http://bugs.python.org/issue23285, so you can expect it to land in the main repo relatively soon. Regards Antoine

Re: [Python-Dev] PEP 475 accepted

2015-02-02 Thread Guido van Rossum
W00t! Congratulations les Français! On Mon, Feb 2, 2015 at 12:45 PM, Antoine Pitrou wrote: > > Hello, > > I'm now accepting PEP 475 - "Retry system calls failing with EINTR". > You can read it at https://www.python.org/dev/peps/pep-0475/ > > The implementation is more or less ready at > http://b

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Cyd Haselton
Update: While waiting for replies I made the change referenced here: https://bugs.python.org/review/5309/diff2/12811:12826/setup.py?context=3&column_width=80 specifically changing importlib. _bootstrap._SpecMethods(spec).load() to importlib._bootstrap.load(spec) I no longer get a

[Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Cyd Haselton
After fixing a segfault issue (many thanks Ryan) I'm back to the same issue I was having with Python 2.7.8; the newly built python throws an undefined reference to dlopen when running setup.py...specifically when importing just-built extensions I've managed to narrow the problem down to the fol

Re: [Python-Dev] PEP 475 accepted

2015-02-02 Thread Victor Stinner
2015-02-02 21:49 GMT+01:00 Guido van Rossum : > W00t! Congratulations les Français! We will celebrate this acceptance with a glass of red wine and cheese. Thanks Antoine! I hate EINTR. It's a pain to handle them for each syscall in subprocess and asyncio (where signals are likely). It's good to n

Re: [Python-Dev] PEP 475 accepted

2015-02-02 Thread Antoine Pitrou
On Mon, 2 Feb 2015 12:49:32 -0800 Guido van Rossum wrote: > W00t! Congratulations les Français! I hoped nobody would notice :-) Regards Antoine. > > On Mon, Feb 2, 2015 at 12:45 PM, Antoine Pitrou wrote: > > > > > Hello, > > > > I'm now accepting PEP 475 - "Retry system calls failing with

Re: [Python-Dev] PEP 475 accepted

2015-02-02 Thread Giampaolo Rodola'
On Mon, Feb 2, 2015 at 9:45 PM, Antoine Pitrou wrote: > > Hello, > > I'm now accepting PEP 475 - "Retry system calls failing with EINTR". > You can read it at https://www.python.org/dev/peps/pep-0475/ > > The implementation is more or less ready at > http://bugs.python.org/issue23285, so you can

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Ryan Gonzalez
In reality, things just got broken even more. I don't know when that patch was created, but it's now very out of date: importlib._bootstrap has no load function. That's what the error you're getting is telling you. Since it isn't getting to load anything, the issue seems "solved". Not really. What

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Cyd Haselton
No traceback unfortunately...the fakechroot in the environment throws the error and setup.py fails. I'll roll back that change...any idea where I could find info about the original method? On February 2, 2015 3:17:54 PM CST, Ryan Gonzalez wrote: >In reality, things just got broken even more. I

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Ryan Gonzalez
Unfortunately, I have no idea. You might want to ask someone who's more familiar with the Python source than I am. What exactly appears? Does it say anything about the source of the error? On Mon, Feb 2, 2015 at 3:24 PM, Cyd Haselton wrote: > No traceback unfortunately...the fakechroot in the e

Re: [Python-Dev] PEP 475 accepted

2015-02-02 Thread Victor Stinner
2015-02-02 22:11 GMT+01:00 Giampaolo Rodola' : > I may be chiming in a little late, however, I'd have a question: does this > affect non-blocking applications somehow? > How often should we expect to receive EINTR? Each time a program is interrupted by a signal while it was waiting for a sycall. M

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Frank, Matthew I
There’s now (as of a couple days ago) a python mobile-sig (https://mail.python.org/mailman/listinfo/mobile-sig). While that group is much smaller than python-dev and probably not as knowledgeable about the Cpython source base, that’s where you’re going to find folks who have a vested interest

Re: [Python-Dev] Import Fails in setup.py On Android

2015-02-02 Thread Eric Snow
On Mon, Feb 2, 2015 at 12:36 PM, Cyd Haselton wrote: > After fixing a segfault issue (many thanks Ryan) I'm back to the same issue > I was having with Python 2.7.8; the newly built python throws an undefined > reference to dlopen when running setup.py...specifically when importing > just-built ext