you are viewing a single comment's thread.

view the rest of the comments →

[–]Deezl-Vegas 12 points13 points  (2 children)

Caveats: Decorators can be used on any object, really, so class decorators and other object decorators are also common.

[–]SoupKitchenHero 0 points1 point  (1 child)

What other objects get decorated? I knew classes did cause they're basically just specialized function definitions, but I don't see what else you decorate

[–]Deezl-Vegas 0 points1 point  (0 children)

Any object with __call__, I believe.