[docs] [issue11704] functools.partial doesn't create bound methods

Nick Coghlan report at bugs.python.org
Tue Mar 29 00:27:48 CEST 2011


Nick Coghlan <ncoghlan at gmail.com> added the comment:

True, this could be documented better - flagging as a docs bug. (It is mentioned at the bottom of http://docs.python.org/library/functools.html#partial-objects, but that could be referenced better from the main documentation of the function higher up in the page)

There's actually more to it than just an oversight though - partial() fills in positional arguments from the left, so using one as a method would require specification of a carefully crafted selection of positional and keyword arguments to ensure the instance was bound and passed in at the right point.

----------
assignee:  -> docs at python
components: +Documentation
nosy: +docs at python, ncoghlan

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue11704>
_______________________________________


More information about the docs mailing list