Martin Panter added the comment:

Doesn't seem like a bug to me.

Even if there was special support for "partial" objects, that won't help with 
other ways of producing the same sort of thing.

test2 = functools.partial(test, a=10)

@functools.wraps(test)
def test2():
    return test(a=10)

Both ways produce a callable that returns a generator-iterator instance, but 
neither callables are really generator functions.

----------
nosy: +martin.panter

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29987>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to