Attaches the function as a method with the given name to the given object.
(object, method, function)
| 532 | #--- STREAMING URL BUFFER -------------------------------------------------------------------------- |
| 533 | |
| 534 | def bind(object, method, function): |
| 535 | """ Attaches the function as a method with the given name to the given object. |
| 536 | """ |
| 537 | setattr(object, method, new.instancemethod(function, object)) |
| 538 | |
| 539 | class Stream(list): |
| 540 |