Reputation: 7575
I'd like to create a Python decorator that can be used either with parameters:
@redirect_output("somewhere.log")
def foo():
....
or without them (for instance to redirect the output to stderr by default):
@redirect_output
def foo():
....
Is that at all possible?
Note that I'm not looking for a different solution to the problem of redirecting output, it's just an example of the syntax I'd like to achieve.
Upvotes: 133
Views: 38477
Reputation: 126
A complement to the answer given by @Majo :
It is possible to create a class-based decorator that has the intended behavior without having to touch the __new__()
method.
class decorator_with_argument:
def __init__(self, *args, **kwargs):
print("init:", [args, kwargs])
if (len(args) > 0) and callable(args[0]):
self.wrapped_call = args[0]
self.args = args[1:]
else:
self.wrapped_call = None
self.args = args
self.kwargs = kwargs
def __call__(self, *args, **kwargs):
print("call:", [args, kwargs, self.wrapped_call])
if isinstance(self.wrapped_call, type(None)):
new_instance = super().__new__(type(self))
new_instance.__init__(
*([*args] + [*self.args]), **{**kwargs, **self.kwargs}
)
return new_instance
else:
return self.wrapped_call(*args, **kwargs)
If written this way, the decorator will record the arguments and create a callable class instance, which will in turn record supplementary arguments and return a callable class instance, until the first argument of the call is itself a callable (the decorated function).
This enables things like:
@decorator_with_argument
def test(v):
print(v)
@decorator_with_argument(k=1)
def test(v):
print(v)
@decorator_with_argument(K=1, l=2)
def test(v):
print(v)
@decorator_with_argument(k=1)(l=2)
def test(v):
print(v)
For the last example, you should be able to find the values of k
and l
in test.kwargs
.
Upvotes: 0
Reputation: 147
I had a similar problem, but the answers here didn't seem to help. Not that they are incorrect, but rather that they are mostly incomplete. I found a solution for my own problem and posted it as a gist on github. You can see it at https://gist.github.com/ismaelharunid/2a0e2a4e1a2f40bf07a689d46bd87049. I put many comments in explaining the the handling of with and without decorator parameters and passing the final wrapper back. I how it may be helpful in understanding custom decorators and design. Basically, it just check if it's the default parameter values, or the pass subject (without parameters). If it's the subject, I use it and call the wrapper with it, if not then I just return the wrapper function itself. Easy peasy.
Upvotes: 0
Reputation: 43
I wrote this gist with a decorator to enable decorators to use optional keyword arguments. It may be an elegant solution for this issue.
https://gist.github.com/ramonrosa/402af55633e9b6c273882ac074760426
from functools import partial, wraps
from inspect import signature
from typing import Callable
def decorator_with_kwargs(decorator: Callable) -> Callable:
"""Decorator factory to give decorated decorators the skill to receive
optional keyword arguments.
If a decorator "some_decorator" is decorated with this function:
@decorator_with_kwargs
def some_decorator(decorated_function, kwarg1=1, kwarg2=2):
def wrapper(*decorated_function_args, **decorated_function_kwargs):
'''Modifies the behavior of decorated_function according
to the value of kwarg1 and kwarg2'''
...
return wrapper
It will be usable in the following ways:
@some_decorator
def func(x):
...
@some_decorator()
def func(x):
...
@some_decorator(kwarg1=3) # or other combinations of kwargs
def func(x, y):
...
:param decorator: decorator to be given optional kwargs-handling skills
:type decorator: Callable
:raises TypeError: if the decorator does not receive a single Callable or
keyword arguments
:raises TypeError: if the signature of the decorated decorator does not
conform to: Callable, **keyword_arguments
:return: modified decorator
:rtype: Callable
"""
@wraps(decorator)
def decorator_wrapper(*args, **kwargs):
if (len(kwargs) == 0) and (len(args) == 1) and callable(args[0]):
return decorator(args[0])
if len(args) == 0:
return partial(decorator, **kwargs)
raise TypeError(
f'{decorator.__name__} expects either a single Callable '
'or keyword arguments'
)
signature_values = signature(decorator).parameters.values()
signature_args = [
param.name for param in signature_values
if param.default == param.empty
]
if len(signature_args) != 1:
raise TypeError(
f'{decorator.__name__} signature should be of the form:\n'
f'{decorator.__name__}(function: typing.Callable, '
'kwarg_1=default_1, kwarg_2=default_2, ...) -> Callable'
)
return decorator_wrapper
# EXAMPLE USE CASES:
@decorator_with_kwargs
def multiple_runs(function, num_times=2):
@wraps(function)
def wrapper(*args, **kwargs):
for _ in range(num_times):
function(*args, **kwargs)
return wrapper
# Decorator factory not being called directly
@multiple_runs
def func(x):
print(x, end='')
func('a')
# > aa
# Decorator factory called without arguments
@multiple_runs()
def func(x):
print(x, end='')
func('a')
# > aa
# Decorator factory called with keyword arguments
@multiple_runs(num_times=5)
def func(x):
print(x, end='')
func('a')
# > aaaaa
# Expect TypeError:
# unexpected keyword argument
@multiple_runs(xpto=1)
def func(x):
print(x, end='')
func('a')
# > TypeError: multiple_runs() got an unexpected keyword argument 'xpto'
# Expect TypeError:
# passing a non callable positional argument for the decorator:
@multiple_runs(1)
def func(x):
print(x, end='')
func('a')
# > TypeError: multiple_runs expects either a single Callable or keyword arguments
# Expect TyeError:
# passing two positional arguments for the decorator:
@multiple_runs(1, 2)
def func(x):
print(x, end='')
func('a')
# > TypeError: multiple_runs expects either a single Callable or keyword arguments
# Expect TyeError:
# no workaround for something like this:
@multiple_runs(lambda x: x)
def func(x):
print(x, end='')
func('a')
# > TypeError: 'NoneType' object is not callable
# Expect TyeError:
# decorator with incorrect signature
@decorator_with_kwargs
def decorator_with_incorrect_signature(function, other_arg, x=1):
pass
# > TypeError: decorator_with_incorrect_signature signature should be of the form:
# > decorator_with_incorrect_signature(function: typing.Callable, kwarg_1=default_1, kwarg_2=default_2, ...) -> Callable
Upvotes: 0
Reputation: 354
Since no one mentioned this, there is also a solution utilizing callable class which I find more elegant, especially in cases where the decorator is complex and one may wish to split it to multiple methods(functions). This solution utilizes __new__
magic method to do essentially what others have pointed out. First detect how the decorator was used than adjust return appropriately.
class decorator_with_arguments(object):
def __new__(cls, decorated_function=None, **kwargs):
self = super().__new__(cls)
self._init(**kwargs)
if not decorated_function:
return self
else:
return self.__call__(decorated_function)
def _init(self, arg1="default", arg2="default", arg3="default"):
self.arg1 = arg1
self.arg2 = arg2
self.arg3 = arg3
def __call__(self, decorated_function):
def wrapped_f(*args):
print("Decorator arguments:", self.arg1, self.arg2, self.arg3)
print("decorated_function arguments:", *args)
decorated_function(*args)
return wrapped_f
@decorator_with_arguments(arg1=5)
def sayHello(a1, a2, a3, a4):
print('sayHello arguments:', a1, a2, a3, a4)
@decorator_with_arguments()
def sayHello(a1, a2, a3, a4):
print('sayHello arguments:', a1, a2, a3, a4)
@decorator_with_arguments
def sayHello(a1, a2, a3, a4):
print('sayHello arguments:', a1, a2, a3, a4)
If the decorator is used with arguments, than this equals:
result = decorator_with_arguments(arg1=5)(sayHello)(a1, a2, a3, a4)
One can see that the arguments arg1
are correctly passed to the constructor and the decorated function is passed to __call__
But if the decorator is used without arguments, than this equals:
result = decorator_with_arguments(sayHello)(a1, a2, a3, a4)
You see that in this case the decorated function is passed directly to the constructor and call to __call__
is entirely omitted. That is why we need to employ logic to take care of this case in __new__
magic method.
Why can't we use __init__
instead of __new__
? The reason is simple: python prohibits returning any other values than None from __init__
WARNINGS
This approach has two side effects.
__new__
and not anything else. See here.Upvotes: 4
Reputation: 581
Simple decorator for other decorators:
from functools import wraps, partial
def with_optional_params(decorator):
return wraps(decorator)(
lambda func=None, /, **kwargs: partial(decorator, **kwargs)
if func is None
else decorator(func, **kwargs)
)
@with_optional_params
def printed(func, *, pre=True, post=True):
@wraps(func)
def wrapper(*args, **kwargs):
if pre:
print('pre')
result = func(*args, **kwargs)
if post:
print('post')
return result
return wrapper
@printed
def foo(): pass
@printed(post=False)
def foo(): pass
Upvotes: 0
Reputation: 13
Because I did not find an easy to digest explanation for these solutions on the internet, I'll try to demonstrate visually what happened on them.
Firstly, let's see the difference between what @decorator
and @decorator()
does.
@decorator
without parenthesis:
def decorator(func=None):
if func:
print('success')
return func
else:
print('failure')
return print
@decorator
def hello():
print('hello')
return
hello() # <- result bellow
success
hello
Process finished with exit code 0
Now @decorator()
with parenthesis:
def decorator(func=None):
if func:
print('success')
return func
else:
print('failure')
return print
@decorator()
def hello():
print('hello')
return
hello()
failure
<function hello at 0x00000170FEC889A0>
Traceback (most recent call last):
File "C:\Users\User\PycharmProjects\stackoverflow\answer_1.py", line 41, in <module>
hello()
TypeError: 'NoneType' object is not callable
Process finished with exit code 1
<function hello at 0x00000170FEC889A0>
is the same as print(hello)
Apparently, when the decorator is called with parenthesis, the function bellow is ignored (as seen in other answers). But when it returns a function (e.g. print
), it takes as argument hello
as seen.
Another example:
def decorator(func=None, arg=None):
if func:
print('success')
return func
else:
print('failure')
if arg:
print(arg)
return print
@decorator('i am an str')
def hello():
print('hello')
return
hello()
Traceback (most recent call last):
File "C:\Users\User\PycharmProjects\stackoverflow_question_1\answer_1.py", line 37, in <module>
@decorator('i am an str')
^^^^^^^^^^^^^^^^^^^^^^
TypeError: 'str' object is not callable
success
Process finished with exit code 1
Here the decorator tries to call a str
, which passed as the func
parameter (because the console printed success), being the first and only argument inside the parenthesis.
If you know how a decorator works you probably already figured it out.
When we call @decorator
to def hello
, we get hello
as:
hello = decorator(hello) # if hello is already defined
When we call @decorator()
instead we get:
hello = decorator()(hello)
# this is calling the return value of decorator().
Python made the decorator syntax code as simple as possible, like anything you put in the line after @ will get called with the bellow definition as the sole argument.
@12341234
is the same as ... = 12341234(...)
. Since int it's not callable, @12341234
will get a TypeError.
Upvotes: 0
Reputation: 1
The example code multiply()
below can accept one argument or no parentheses from the decorator and sum()
below can sum 2 numbers:
from numbers import Number
def multiply(num):
def _multiply(func):
def core(*args, **kwargs):
result = func(*args, **kwargs)
if isinstance(num, Number):
return result * num
else:
return result
return core
if callable(num):
return _multiply(num)
else:
return _multiply
def sum(num1, num2):
return num1 + num2
So, if you put @multiply(5)
on sum()
, then call sum(4, 6)
as shown below:
# (4 + 6) x 5 = 50
@multiply(5) # Here
def sum(num1, num2):
return num1 + num2
result = sum(4, 6)
print(result)
You can get the result below:
50
And, if you put @multiply
on sum()
, then call sum(4, 6)
as shown below:
# 4 + 6 = 10
@multiply # Here
def sum(num1, num2):
return num1 + num2
result = sum(4, 6)
print(result)
You can get the result below:
10
But, if you put @multiply()
on sum()
, then call sum(4, 6)
as shown below:
@multiply() # Here
def sum(num1, num2):
return num1 + num2
result = sum(4, 6)
print(result)
The error below occurs:
TypeError: multiply() missing 1 required positional argument: 'num'
So, if you want @multiply()
to run without error, you need to add the default value 1
to num
as shown below:
from numbers import Number
# Here
def multiply(num=1):
def _multiply(func):
def core(*args, **kwargs):
# ...
Then, if you put @multiply()
on sum()
, then call sum(4, 6)
as shown below:
# (4 + 6) x 1 = 10
@multiply() # Here
def sum(num1, num2):
return num1 + num2
result = sum(4, 6)
print(result)
You can get the result below:
10
Upvotes: 0
Reputation: 743
Several answers here already address your problem nicely. With respect to style, however, I prefer solving this decorator predicament using functools.partial
, as suggested in David Beazley's Python Cookbook 3:
from functools import partial, wraps
def decorator(func=None, foo='spam'):
if func is None:
return partial(decorator, foo=foo)
@wraps(func)
def wrapper(*args, **kwargs):
# do something with `func` and `foo`, if you're so inclined
pass
return wrapper
While yes, you can just do
@decorator()
def f(*args, **kwargs):
pass
without funky workarounds, I find it strange looking, and I like having the option of simply decorating with @decorator
.
As for the secondary mission objective, redirecting a function's output is addressed in this Stack Overflow post.
If you want to dive deeper, check out Chapter 9 (Metaprogramming) in Python Cookbook 3, which is freely available to be read online.
Some of that material is live demoed (plus more!) in Beazley's awesome YouTube video Python 3 Metaprogramming.
Upvotes: 23
Reputation: 5156
To complete the other answers:
"Is there a way to build a decorator that can be used both with and without arguments ?"
No there is no generic way because there is currently something missing in the python language to detect the two different use cases.
However Yes as already pointed out by other answers such as bj0
s, there is a clunky workaround that is to check the type and value of the first positional argument received (and to check if no other arguments have non-default value). If you are guaranteed that users will never pass a callable as first argument of your decorator, then you can use this workaround. Note that this is the same for class decorators (replace callable by class in the previous sentence).
To be sure of the above, I did quite a bit of research out there and even implemented a library named decopatch
that uses a combination of all strategies cited above (and many more, including introspection) to perform "whatever is the most intelligent workaround" depending on your need. It comes bundled with two modes: nested and flat.
In "nested mode" you always return a function
from decopatch import function_decorator
@function_decorator
def add_tag(tag='hi!'):
"""
Example decorator to add a 'tag' attribute to a function.
:param tag: the 'tag' value to set on the decorated function (default 'hi!).
"""
def _apply_decorator(f):
"""
This is the method that will be called when `@add_tag` is used on a
function `f`. It should return a replacement for `f`.
"""
setattr(f, 'tag', tag)
return f
return _apply_decorator
while in "flat mode" your method is directly the code that will be executed when the decorator is applied. It is injected with the decorated function object f
:
from decopatch import function_decorator, DECORATED
@function_decorator
def add_tag(tag='hi!', f=DECORATED):
"""
Example decorator to add a 'tag' attribute to a function.
:param tag: the 'tag' value to set on the decorated function (default 'hi!).
"""
setattr(f, 'tag', tag)
return f
But frankly the best would be not to need any library here and to get that feature straight from the python language. If, like myself, you think that it is a pity that the python language is not as of today capable of providing a neat answer to this question, do not hesitate to support this idea in the python bugtracker: https://bugs.python.org/issue36553 !
Upvotes: 3
Reputation: 11
this work for me:
def redirect_output(func=None, /, *, output_log='./output.log'):
def out_wrapper(func):
def wrapper(*args, **kwargs):
res = func(*args, **kwargs)
print(f"{func.__name__} finished, output_log:{output_log}")
return res
return wrapper
if func is None:
return out_wrapper # @redirect_output()
return out_wrapper(func) # @redirect_output
@redirect_output
def test1():
print("running test 1")
@redirect_output(output_log="new.log")
def test2():
print("running test 2")
test1()
print('-----')
test2()
Upvotes: 1
Reputation: 3069
This does the job without no fuss:
from functools import wraps
def memoize(fn=None, hours=48.0):
def deco(fn):
@wraps(fn)
def wrapper(*args, **kwargs):
return fn(*args, **kwargs)
return wrapper
if callable(fn): return deco(fn)
return deco
Upvotes: 1
Reputation: 16796
I know this is an old question, but I really don't like any of the techniques proposed so I wanted to add another method. I saw that django uses a really clean method in their login_required
decorator in django.contrib.auth.decorators
. As you can see in the decorator's docs, it can be used alone as @login_required
or with arguments, @login_required(redirect_field_name='my_redirect_field')
.
The way they do it is quite simple. They add a kwarg
(function=None
) before their decorator arguments. If the decorator is used alone, function
will be the actual function it is decorating, whereas if it is called with arguments, function
will be None
.
Example:
from functools import wraps
def custom_decorator(function=None, some_arg=None, some_other_arg=None):
def actual_decorator(f):
@wraps(f)
def wrapper(*args, **kwargs):
# Do stuff with args here...
if some_arg:
print(some_arg)
if some_other_arg:
print(some_other_arg)
return f(*args, **kwargs)
return wrapper
if function:
return actual_decorator(function)
return actual_decorator
@custom_decorator
def test1():
print('test1')
>>> test1()
test1
@custom_decorator(some_arg='hello')
def test2():
print('test2')
>>> test2()
hello
test2
@custom_decorator(some_arg='hello', some_other_arg='world')
def test3():
print('test3')
>>> test3()
hello
world
test3
I find this approach that django uses to be more elegant and easier to understand than any of the other techniques proposed here.
Upvotes: 40
Reputation: 1557
In fact, the caveat case in @bj0's solution can be checked easily:
def meta_wrap(decor):
@functools.wraps(decor)
def new_decor(*args, **kwargs):
if len(args) == 1 and len(kwargs) == 0 and callable(args[0]):
# this is the double-decorated f.
# Its first argument should not be a callable
doubled_f = decor(args[0])
@functools.wraps(doubled_f)
def checked_doubled_f(*f_args, **f_kwargs):
if callable(f_args[0]):
raise ValueError('meta_wrap failure: '
'first positional argument cannot be callable.')
return doubled_f(*f_args, **f_kwargs)
return checked_doubled_f
else:
# decorator arguments
return lambda real_f: decor(real_f, *args, **kwargs)
return new_decor
Here are a few test cases for this fail-safe version of meta_wrap
.
@meta_wrap
def baddecor(f, caller=lambda x: -1*x):
@functools.wraps(f)
def _f(*args, **kwargs):
return caller(f(args[0]))
return _f
@baddecor # used without arg: no problem
def f_call1(x):
return x + 1
assert f_call1(5) == -6
@baddecor(lambda x : 2*x) # bad case
def f_call2(x):
return x + 1
f_call2(5) # raises ValueError
# explicit keyword: no problem
@baddecor(caller=lambda x : 100*x)
def f_call3(x):
return x + 1
assert f_call3(5) == 600
Upvotes: 2
Reputation: 8213
I know this question is old, but some of the comments are new, and while all of the viable solutions are essentially the same, most of them aren't very clean or easy to read.
Like thobe's answer says, the only way to handle both cases is to check for both scenarios. The easiest way is simply to check to see if there is a single argument and it is callabe (NOTE: extra checks will be necessary if your decorator only takes 1 argument and it happens to be a callable object):
def decorator(*args, **kwargs):
if len(args) == 1 and len(kwargs) == 0 and callable(args[0]):
# called as @decorator
else:
# called as @decorator(*args, **kwargs)
In the first case, you do what any normal decorator does, return a modified or wrapped version of the passed in function.
In the second case, you return a 'new' decorator that somehow uses the information passed in with *args, **kwargs.
This is fine and all, but having to write it out for every decorator you make can be pretty annoying and not as clean. Instead, it would be nice to be able to automagically modify our decorators without having to re-write them... but that's what decorators are for!
Using the following decorator decorator, we can deocrate our decorators so that they can be used with or without arguments:
def doublewrap(f):
'''
a decorator decorator, allowing the decorator to be used as:
@decorator(with, arguments, and=kwargs)
or
@decorator
'''
@wraps(f)
def new_dec(*args, **kwargs):
if len(args) == 1 and len(kwargs) == 0 and callable(args[0]):
# actual decorated function
return f(args[0])
else:
# decorator arguments
return lambda realf: f(realf, *args, **kwargs)
return new_dec
Now, we can decorate our decorators with @doublewrap, and they will work with and without arguments, with one caveat:
I noted above but should repeat here, the check in this decorator makes an assumption about the arguments that a decorator can receive (namely that it can't receive a single, callable argument). Since we are making it applicable to any generator now, it needs to be kept in mind, or modified if it will be contradicted.
The following demonstrates its use:
def test_doublewrap():
from util import doublewrap
from functools import wraps
@doublewrap
def mult(f, factor=2):
'''multiply a function's return value'''
@wraps(f)
def wrap(*args, **kwargs):
return factor*f(*args,**kwargs)
return wrap
# try normal
@mult
def f(x, y):
return x + y
# try args
@mult(3)
def f2(x, y):
return x*y
# try kwargs
@mult(factor=5)
def f3(x, y):
return x - y
assert f(2,3) == 10
assert f2(2,5) == 30
assert f3(8,1) == 5*7
Upvotes: 113
Reputation: 6670
A python decorator is called in a fundamentally different way depending on whether you give it arguments or not. The decoration is actually just a (syntactically restricted) expression.
In your first example:
@redirect_output("somewhere.log")
def foo():
....
the function redirect_output
is called with the
given argument, which is expected to return a decorator
function, which itself is called with foo
as an argument,
which (finally!) is expected to return the final decorated function.
The equivalent code looks like this:
def foo():
....
d = redirect_output("somewhere.log")
foo = d(foo)
The equivalent code for your second example looks like:
def foo():
....
d = redirect_output
foo = d(foo)
So you can do what you'd like but not in a totally seamless way:
import types
def redirect_output(arg):
def decorator(file, f):
def df(*args, **kwargs):
print 'redirecting to ', file
return f(*args, **kwargs)
return df
if type(arg) is types.FunctionType:
return decorator(sys.stderr, arg)
return lambda f: decorator(arg, f)
This should be ok unless you wish to use a function as an argument to your decorator, in which case the decorator will wrongly assume it has no arguments. It will also fail if this decoration is applied to another decoration that does not return a function type.
An alternative method is just to require that the decorator function is always called, even if it is with no arguments. In this case, your second example would look like this:
@redirect_output()
def foo():
....
The decorator function code would look like this:
def redirect_output(file = sys.stderr):
def decorator(file, f):
def df(*args, **kwargs):
print 'redirecting to ', file
return f(*args, **kwargs)
return df
return lambda f: decorator(file, f)
Upvotes: 8
Reputation: 4285
You need to detect both cases, for example using the type of the first argument, and accordingly return either the wrapper (when used without parameter) or a decorator (when used with arguments).
from functools import wraps
import inspect
def redirect_output(fn_or_output):
def decorator(fn):
@wraps(fn)
def wrapper(*args, **args):
# Redirect output
try:
return fn(*args, **args)
finally:
# Restore output
return wrapper
if inspect.isfunction(fn_or_output):
# Called with no parameter
return decorator(fn_or_output)
else:
# Called with a parameter
return decorator
When using the @redirect_output("output.log")
syntax, redirect_output
is called with a single argument "output.log"
, and it must return a decorator accepting the function to be decorated as an argument. When used as @redirect_output
, it is called directly with the function to be decorated as an argument.
Or in other words: the @
syntax must be followed by an expression whose result is a function accepting a function to be decorated as its sole argument, and returning the decorated function. The expression itself can be a function call, which is the case with @redirect_output("output.log")
. Convoluted, but true :-)
Upvotes: 13
Reputation: 1593
Using keyword arguments with default values (as suggested by kquinn) is a good idea, but will require you to include the parenthesis:
@redirect_output()
def foo():
...
If you would like a version that works without the parenthesis on the decorator you will have to account both scenarios in your decorator code.
If you were using Python 3.0 you could use keyword only arguments for this:
def redirect_output(fn=None,*,destination=None):
destination = sys.stderr if destination is None else destination
def wrapper(*args, **kwargs):
... # your code here
if fn is None:
def decorator(fn):
return functools.update_wrapper(wrapper, fn)
return decorator
else:
return functools.update_wrapper(wrapper, fn)
In Python 2.x this can be emulated with varargs tricks:
def redirected_output(*fn,**options):
destination = options.pop('destination', sys.stderr)
if options:
raise TypeError("unsupported keyword arguments: %s" %
",".join(options.keys()))
def wrapper(*args, **kwargs):
... # your code here
if fn:
return functools.update_wrapper(wrapper, fn[0])
else:
def decorator(fn):
return functools.update_wrapper(wrapper, fn)
return decorator
Any of these versions would allow you to write code like this:
@redirected_output
def foo():
...
@redirected_output(destination="somewhere.log")
def bar():
...
Upvotes: 40
Reputation: 16085
Building on vartec's answer:
imports sys
def redirect_output(func, output=None):
if output is None:
output = sys.stderr
if isinstance(output, basestring):
output = open(output, 'w') # etc...
# everything else...
Upvotes: -3
Reputation: 10740
Have you tried keyword arguments with default values? Something like
def decorate_something(foo=bar, baz=quux):
pass
Upvotes: -2
Reputation: 131600
Generally you can give default arguments in Python...
def redirect_output(fn, output = stderr):
# whatever
Not sure if that works with decorators as well, though. I don't know of any reason why it wouldn't.
Upvotes: -3