vote up 1 vote down star

Why doesn't Python allow modules to have a __call__? (Beyond the obvious that it wouldn't be easy to import directly.) Specifically, why doesn't using a(b) syntax find the __call__ attribute like it does for functions, classes, and objects? (Is lookup just incompatibly different for modules?)

>>> print open("mod_call.py").read()
def __call__():
    return 42

>>> import mod_call
>>> mod_call()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'module' object is not callable
>>> mod_call.__call__()
42
flag

Out of interest: Why on earth would you want a callable module? – Lennart Regebro Jun 30 at 4:35
Migrating a decorator from a package into its own sub-module. @example(...) was by far still the most common use-case, but @example.special_case(...) was a new use. I didn't want to implement it with an example class and static methods, since that was a poor fit. Not sure a callable module is a better fit, but I started investigating it and then wanted to know why it didn't work. – Roger Pate Jun 30 at 5:15
I had also thought it could simplify some modules such as datetime and decimal, by making the module.__call__ be datetime.datetime or decimal.Decimal respectively. However, then type(decimal('1')) wouldn't be the same as decimal, and possible other issues. shrug It was an idea. – Roger Pate Jun 30 at 5:18

2 Answers

vote up 8 vote down check

Python doesn't allow modules to override or add any magic method, because keeping module objects simple, regular and lightweight is just too advantageous considering how rarely strong use cases appear where you could use magic methods there.

When such use cases do appear, the solution is to make a class instance masquerade as a method. Specifically, code your mod_call.py as follows:

import sys
class mod_call(object):
  def __call__(self):
    return 42
sys.modules[__name__] = mod_call()

Now your code importing and calling mod_call works fine.

link|flag
Wow. I was seconds from posting a code example based on this example of yours: stackoverflow.com/questions/880530/… – Stephan202 Jun 29 at 22:23
Heh, SO feels like a test of reflexes sometimes!-) – Alex Martelli Jun 30 at 0:18
Thank you for the perspective, Alex. – gahooa Sep 23 at 18:19
vote up 2 vote down

Special methods are only guaranteed to be called implicitly when they are defined on the type, not on the instance. (__call__ is an attribute of the module instance mod_call, not of <type 'module'>.) You can't add methods to built-in types.

http://docs.python.org/reference/datamodel.html#special-method-lookup-for-new-style-classes

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.