Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #50726 > unrolled thread

a little more explicative error message?

Started byVito De Tullio <vito.detullio@gmail.com>
First post2013-07-16 07:44 +0200
Last post2013-07-16 07:44 +0200
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python


Contents

  a little more explicative error message? Vito De Tullio <vito.detullio@gmail.com> - 2013-07-16 07:44 +0200

#50726 — a little more explicative error message?

FromVito De Tullio <vito.detullio@gmail.com>
Date2013-07-16 07:44 +0200
Subjecta little more explicative error message?
Message-ID<mailman.4755.1373953503.3114.python-list@python.org>
Hi

I was writing a decorator and lost half an hour for a stupid bug in my code, 
but honestly the error the python interpreter returned to me doesn't 
helped...

$ python3
Python 3.3.0 (default, Feb 24 2013, 09:34:27)
[GCC 4.7.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from functools import wraps
>>> def dec(fun):
...  @wraps
...  def ret(*args, **kwargs):
...   return fun(*args, **kwargs)
...  return ret
...
>>> @dec
... def fun(): pass
...
>>> fun()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: update_wrapper() missing 1 required positional argument: 
'wrapper'
>>>
$


Soo... at a first glance, no tricks... can you tell where is the error? :D



As I said, the error is totally mine, I just forgot to pass the function as 
parameter to wraps. But... what is "update_wrapper()"? and "wrapper"? There 
is no useful traceback or something... just... this.

Ok, the documentation clearly says:

    This is a convenience function to simplify applying partial() to
    update_wrapper().

So, again, shame on me... I just read carefully the doc *after* 20 minutes 
trying everything else...  still... I think should be useful if wraps() 
intercept this error saying something more explicit about the missing fun 
parameter...

-- 
ZeD

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web