Re: [Python-Dev] PEP 0424: A method for exposing a length hint

2012-08-01 Thread Mark Shannon
While the idea behind PEP 424 is sound, the text of the PEP is rather vague and missing a lot of details. There was extended discussion on the details, but none of that has appeared in the PEP yet. So Alex, how about adding those details? Also the rationale is rather poor. Given that CPython i

Re: [Python-Dev] PEP 0424: A method for exposing a length hint

2012-08-01 Thread Maciej Fijalkowski
On Wed, Aug 1, 2012 at 10:46 AM, Mark Shannon wrote: > While the idea behind PEP 424 is sound, the text of the PEP is rather vague > and missing a lot of details. > There was extended discussion on the details, but none of that has appeared > in the PEP yet. > > So Alex, how about adding those det

Re: [Python-Dev] PEP 0424: A method for exposing a length hint

2012-08-01 Thread Mark Shannon
Maciej Fijalkowski wrote: On Wed, Aug 1, 2012 at 10:46 AM, Mark Shannon wrote: While the idea behind PEP 424 is sound, the text of the PEP is rather vague and missing a lot of details. There was extended discussion on the details, but none of that has appeared in the PEP yet. So Alex, how abou

Re: [Python-Dev] PEP 0424: A method for exposing a length hint

2012-08-01 Thread Maciej Fijalkowski
On Wed, Aug 1, 2012 at 12:06 PM, Mark Shannon wrote: > Maciej Fijalkowski wrote: >> >> On Wed, Aug 1, 2012 at 10:46 AM, Mark Shannon wrote: >>> >>> While the idea behind PEP 424 is sound, the text of the PEP is rather >>> vague >>> and missing a lot of details. >>> There was extended discussion o

Re: [Python-Dev] HTTPS repositories failing when using selfsigned certs

2012-08-01 Thread Antoine Pitrou
On Wed, 01 Aug 2012 05:58:06 +0200 Jesus Cea wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > My mercurial clone is , and today I > can't create a patch from it (in the bug tracker). No explanation in > the web interface, but checking the sourcecode o

Re: [Python-Dev] HTTPS repositories failing when using selfsigned certs

2012-08-01 Thread Antoine Pitrou
On Wed, 1 Aug 2012 14:12:54 +0200 Antoine Pitrou wrote: > On Wed, 01 Aug 2012 05:58:06 +0200 > Jesus Cea wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > My mercurial clone is , and today I > > can't create a patch from it (in the bug tracke

Re: [Python-Dev] cpython: Fix findnocoding.p and pysource.py scripts

2012-08-01 Thread Serhiy Storchaka
On 01.08.12 21:16, victor.stinner wrote: http://hg.python.org/cpython/rev/67d36e8ddcfc changeset: 78375:67d36e8ddcfc user:Victor Stinner date:Wed Aug 01 20:12:51 2012 +0200 summary: Fix findnocoding.p and pysource.py scripts I suppose that these scripts didn't work since Py

Re: [Python-Dev] cpython: Fix findnocoding.p and pysource.py scripts

2012-08-01 Thread Victor Stinner
2012/8/1 Serhiy Storchaka : >> changeset: 78375:67d36e8ddcfc >>Fix findnocoding.p and pysource.py scripts >> > >> -line1 = infile.readline() >> -line2 = infile.readline() >> +with infile: >> +line1 = infile.readline() >> +line2 = infile.readline() >> >> -if get