Hacker News new | ask | show | jobs
by masklinn 2325 days ago
> Functions are, of course, objects in Python, so that makes sense

Functions are objects in many langages. Python’s specific feature is that there are callable a beyond functions. A class is a callable and a user-defined object can be one despite neither being functions.

Clojure also has that concept.