Parameters ---------- urls : list of str or None Notes ----- URLs are currently only implemented by the SVG backend. They are ignored by all other backends.
(self, urls)
| 554 | return len(ind) > 0, dict(ind=ind) |
| 555 | |
| 556 | def set_urls(self, urls): |
| 557 | """ |
| 558 | Parameters |
| 559 | ---------- |
| 560 | urls : list of str or None |
| 561 | |
| 562 | Notes |
| 563 | ----- |
| 564 | URLs are currently only implemented by the SVG backend. They are |
| 565 | ignored by all other backends. |
| 566 | """ |
| 567 | self._urls = urls if urls is not None else [None] |
| 568 | self.stale = True |
| 569 | |
| 570 | def get_urls(self): |
| 571 | """ |
no outgoing calls