MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / set_urls

Method set_urls

lib/matplotlib/collections.py:556–568  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 3

__init__Method · 0.95
test_urlFunction · 0.80

Calls

no outgoing calls

Tested by 1

test_urlFunction · 0.64