Some motivation: File ".../zope/interface/adapter.py", line 482, in queryMultiAdapter result = factory(*objects) TypeError: __init__() takes exactly 2 arguments (3 given) Perhaps the need for introspection tools would not be so immediate if the exceptions were more informative; for instance, in the example above, why not print the repr of the factory having problems. Or better, use the ``inspect`` module to show what the factory expects in terms of parameters and list the ``*objects`` passed to it. \malthe
Malthe Borch wrote:
Some motivation:
File ".../zope/interface/adapter.py", line 482, in queryMultiAdapter result = factory(*objects) TypeError: __init__() takes exactly 2 arguments (3 given)
Perhaps the need for introspection tools would not be so immediate if the exceptions were more informative; for instance, in the example above, why not print the repr of the factory having problems.
Or better, use the ``inspect`` module to show what the factory expects in terms of parameters and list the ``*objects`` passed to it.
+1
On Tue, Apr 15, 2008 at 02:07:58PM +0200, Malthe Borch wrote:
Some motivation:
File ".../zope/interface/adapter.py", line 482, in queryMultiAdapter result = factory(*objects) TypeError: __init__() takes exactly 2 arguments (3 given)
Perhaps the need for introspection tools would not be so immediate if the exceptions were more informative; for instance, in the example above, why not print the repr of the factory having problems.
Or better, use the ``inspect`` module to show what the factory expects in terms of parameters and list the ``*objects`` passed to it.
+1 -- gocept gmbh & co. kg - forsterstrasse 29 - 06112 halle (saale) - germany www.gocept.com - ct@gocept.com - phone +49 345 122 9889 7 - fax +49 345 122 9889 1 - zope and plone consulting and development
participants (3)
-
Chris McDonough -
Christian Theune -
Malthe Borch