Since it may come in handy when discussing "Why was Python 3
necessary?" with folks, I wanted to point out that my article on the
transition to multilingual programming has now been reposted on the
Red Hat developer blog:
http://developerblog.redhat.com/2014/09/09/transition-to-multilingual-program
On Wed, Sep 10, 2014 at 05:17:57PM +1000, Nick Coghlan wrote:
> Since it may come in handy when discussing "Why was Python 3
> necessary?" with folks, I wanted to point out that my article on the
> transition to multilingual programming has now been reposted on the
> Red Hat developer blog:
> http:
On 09/08/2014 05:08 AM, Nick Coghlan wrote:
On 8 September 2014 14:28, Ned Deily wrote:
As I've already discussed with Larry, I think adding a week to the
scheduled dates would be preferable. The original dates give pretty
short notice and there are a number of open issues that would be good t
Hello,
Can someone explain me why gc(CPython) can not collect recursive closure's
cycle reference? There is no __del__ here, why gc can not collect?
Thanks a lot.
For example:
#!/usr/bin/env python
import ipdb
import gc
gc.set_debug(gc.DEBUG_LEAK)
def A():
N = [1]
def aa(n):
if n
On Thu, Sep 11, 2014 at 12:55 PM, Li Tianqing wrote:
> Hello,
> Can someone explain me why gc(CPython) can not collect recursive
> closure's cycle reference? There is no __del__ here, why gc can not
> collect?
Can you start by explaining what's not getting collected and what is?
Where's the