Re: [Python-Dev] security SIG? (was: Discussion overload)

2016-06-17 Thread Barry Warsaw
On Jun 18, 2016, at 03:06 AM, Brett Cannon wrote: >Do we need a security SIG? E.g. would people like Christian and Cory like >to have a separate place to talk about the ssl stuff brought up at the >language summit? The only thing I'd be worried about is people thinking that the sig is the place t

[Python-Dev] security SIG? (was: Discussion overload)

2016-06-17 Thread Brett Cannon
On Fri, 17 Jun 2016 at 18:13 Nick Coghlan wrote: > On 16 June 2016 at 19:00, Kevin Ollivier > wrote: > > Hi Guido, > > > > From: on behalf of Guido van Rossum > > > > Reply-To: > > Date: Thursday, June 16, 2016 at 5:27 PM > > To: Kevin Ollivier > > Cc: Python Dev > > Subject: Re: [Python-De

Re: [Python-Dev] frame evaluation API PEP

2016-06-17 Thread Brett Cannon
I have taken PEP 523 for this: https://github.com/python/peps/blob/master/pep-0523.txt . I'm waiting until Guido gets back from vacation, at which point I'll ask for a pronouncement or assignment of a BDFL delegate. On Fri, 3 Jun 2016 at 14:37 Brett Cannon wrote: > For those of you who follow p

Re: [Python-Dev] PEP 520: Ordered Class Definition Namespace

2016-06-17 Thread Nick Coghlan
On 7 June 2016 at 17:50, Eric Snow wrote: > Why is __definition_order__ even necessary? > --- > > Since the definition order is not preserved in ``__dict__``, it would be > lost once class definition execution completes. Classes *could* > explicitly set the

Re: [Python-Dev] Discussion overload

2016-06-17 Thread Nick Coghlan
On 16 June 2016 at 19:00, Kevin Ollivier wrote: > Hi Guido, > > From: on behalf of Guido van Rossum > > Reply-To: > Date: Thursday, June 16, 2016 at 5:27 PM > To: Kevin Ollivier > Cc: Python Dev > Subject: Re: [Python-Dev] Discussion overload > > Hi Kevin, > > I often feel the same way. Are y

[Python-Dev] Summary of Python tracker Issues

2016-06-17 Thread Python tracker
ACTIVITY SUMMARY (2016-06-10 - 2016-06-17) Python tracker at http://bugs.python.org/ To view or respond to any of the issues listed below, click on the issue. Do NOT respond to this message. Issues counts and deltas: open5544 ( -9) closed 33557 (+66) total 39101 (+57) Open issues wit

[Python-Dev] Compact dict implementations (was: PEP 468

2016-06-17 Thread INADA Naoki
Hi, developers. I'm trying to implement compact dict. https://github.com/methane/cpython/pull/1 Current status is passing most of tests. Some tests are failing because of I haven't updated `sizeof` until layout fix. And I haven't dropped OrderedDict has linked list. Before finishing implementati