←back to thread

Go is still not good

(blog.habets.se)
644 points ustad | 1 comments | | HN request time: 0.213s | source
Show context
baq ◴[] No.44983227[source]
> Though Python is almost entirely refcounted, so one can pretty much rely on the __del__ finalizer being called.

yeah no. you need an acyclic structure to maybe guarantee this, in CPython. other Python implementations are more normal in that you shouldn't rely on finalizers at all.

replies(2): >>44983302 #>>44983937 #
1. thomashabets2 ◴[] No.44983937[source]
Author here.

Yes, yes. Hence the words "almost" and "pretty much". For exactly this reason.