Re: [Python-Dev] review request: anti-registration of ABCs

2016-08-18 Thread Guido van Rossum
Committed. Someone please watch the buildbots. On Thu, Aug 18, 2016 at 8:12 AM, Guido van Rossum wrote: > Looking... > > On Thu, Aug 18, 2016 at 1:16 AM, Ivan Levkivskyi > wrote: > >> I have unsuccessfully tried to ping the issue >>

Re: [Python-Dev] review request: anti-registration of ABCs

2016-08-18 Thread Guido van Rossum
Looking... On Thu, Aug 18, 2016 at 1:16 AM, Ivan Levkivskyi wrote: > I have unsuccessfully tried to ping the issue > http://bugs.python.org/issue25958 on "anti-registration" of implicit ABCs > by setting attributes to None. > > Guido said: "But with the indicated fixes, I

[Python-Dev] review request: anti-registration of ABCs

2016-08-18 Thread Ivan Levkivskyi
I have unsuccessfully tried to ping the issue http://bugs.python.org/ issue25958 on "anti-registration" of implicit ABCs by setting attributes to None. Guido said: "But with the indicated fixes, I think this good to go (for Python 3.6)" I have manually "rebased" the previous patch by Andrew

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

2016-08-18 Thread Armin Rigo
Hi Inada, On 10 August 2016 at 18:52, INADA Naoki wrote: > a. dict has one additional word and support ring internally. > b. OrderedDict reimplements many APIs (iterating, resizing, etc...) to > support ring. There is a solution "c." which might be simpler. Let's think