Re: [Python-Dev] Review request: issue 27350, compact ordered dict

2016-08-14 Thread Maciej Fijalkowski
On Mon, Aug 15, 2016 at 6:02 AM, Xavier Combelle wrote: > > > On 10/08/2016 17:06, Maciej Fijalkowski wrote: >> * there are nice speedups >> > in this blog post > https://morepypy.blogspot.fr/2015/01/faster-more-memory-efficient-and-more.html > it is mentioned big speedup only on microbenchmark an

Re: [Python-Dev] Changing the licence of statistics.py

2016-08-14 Thread Stephen J. Turnbull
Please talk to the lawyers (IANAL TINLA). Steven d'Aprano writes: > I now wish to change that and have it licenced under Python's > standard licence. Is there anything I need to do other than just > remove the Apache licence boilerplate from the file? IMHO, no; in fact I would argue that its

Re: [Python-Dev] Changing the licence of statistics.py

2016-08-14 Thread Terry Reedy
On 8/14/2016 12:40 AM, Ned Deily wrote: On Aug 14, 2016, at 00:20, Steven D'Aprano wrote: I'm the author of statistics.py, and for historical reasons it was originally included in the standard library under the Apache licence. I now wish to change that and have it licenced under Python's stand

Re: [Python-Dev] Review request: issue 27350, compact ordered dict

2016-08-14 Thread Xavier Combelle
On 10/08/2016 17:06, Maciej Fijalkowski wrote: > * there are nice speedups > in this blog post https://morepypy.blogspot.fr/2015/01/faster-more-memory-efficient-and-more.html it is mentioned big speedup only on microbenchmark and small speedups on pypy benchmark. is it what you call nice speedups

Re: [Python-Dev] Issues in Python TLS

2016-08-14 Thread Barry Warsaw
On Aug 13, 2016, at 04:14 PM, Benjamin Peterson wrote: >Correctness of TLS certificate verification is known to depend deeply on >distribution. Python began to verify certificates by default only in in >version 2.7.9. Many OS distributions (in particular, Ubuntu) did not >enable verification for t

[Python-Dev] Would somebody like to review issue27573 please?

2016-08-14 Thread Steven D'Aprano
I have a tiny patch for issue 27573, "code.interact() should print an exit message". http://bugs.python.org/issue27573 Its a one-line change to code.py, plus a dozen or so lines changed in test_code.py. If its not controversial, I think it would be nice to get it into 3.6. Thanks, -- Ste