demo_parasite_axes triggers bug?

I ran into some failures while trying to build the docs from master. Here is one, illustrated via running an example directly.

efiring@...340...:~/programs/py/mpl/matplotlib/doc$ python /home/efiring/programs/py/mpl/matplotlib/doc/mpl_toolkits/axes_grid/figures/demo_parasite_axes.py
Traceback (most recent call last):
   File "/home/efiring/programs/py/mpl/matplotlib/doc/mpl_toolkits/axes_grid/figures/demo_parasite_axes.py", line 47, in <module>
     host.legend()
   File "/usr/local/lib/python2.7/dist-packages/matplotlib/axes.py", line 4427, in legend
     handles, labels = self.get_legend_handles_labels()
   File "/usr/local/lib/python2.7/dist-packages/matplotlib/axes.py", line 4262, in get_legend_handles_labels
     for handle in self._get_legend_handles(legend_handler_map):
   File "/usr/local/lib/python2.7/dist-packages/mpl_toolkits/axes_grid1/parasite_axes.py", line 263, in _get_legend_handles
     all_handles.extend(ax._get_legend_handles)
TypeError: 'instancemethod' object is not iterable

Eric